博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVA 512 Spreadsheet Tracking
阅读量:5878 次
发布时间:2019-06-19

本文共 809 字,大约阅读时间需要 2 分钟。

1 #include "stdio.h" 2 #include "string.h" 3 #define maxd 10000 4 int r,c,n; 5 struct Command{ 6     char c[5];//操作,比如EX,IR 7     int r1,c1,r2,c2;// EX交换的坐标 8     int a,x[20];//a:每次操作的操作次数(非EX),比如 IR 2 1 5,插入1和5,a=2 9     //x[20],记录每次操作对应的内容,也就是上面的1 510 }cmd[maxd];11 int simulate(int *r0,int *c0)12 {13     for(int i=0;i
0)82 printf("\n");83 printf("Spreadsheet #%d\n",++kase);84 scanf("%d",&q);//输入查询次数85 while(q--)86 {87 scanf("%d%d",&r0,&c0);88 printf("Cell data in (%d,%d) ",r0,c0);89 if(!simulate(&r0,&c0))90 printf("GONE\n");91 else92 printf("moved to (%d,%d)\n",r0,c0);93 }94 }95 return 0;96 }

 

转载于:https://www.cnblogs.com/fudanxi/p/10311382.html

你可能感兴趣的文章
HTTP 协议 Cache-Control 头——性能啊~~~
查看>>
丢包补偿技术概述
查看>>
PHP遍历文件夹及子文件夹所有文件
查看>>
WinForm程序中两份mdf文件问题的解决
查看>>
【转】唯快不破:创业公司如何高效的进行产品研发管理
查看>>
程序计数器、反汇编工具
查看>>
Android N: jack server failed
查看>>
007-Shell test 命令,[],[[]]
查看>>
关于Linux系统使用遇到的问题-1:vi 打开只读(readonly)文件如何退出保存?
查看>>
pandas 按照某一列进行排序
查看>>
在WPF中如何使用RelativeSource绑定
查看>>
Map的深浅拷贝的探究
查看>>
XSLT语法 在.net中使用XSLT转换xml文档示例
查看>>
如何将lotus 通讯簿导入到outlook 2003中
查看>>
WinForm 应用程序中开启新的进程及控制
查看>>
前端工程师的职业发展路线在哪?
查看>>
IOS 内存警告 Memory warning level
查看>>
[转]PAC Manager: Ubuntu 上强大的 SSH 帐号管理工具,可取代 SecureCRT_Miracle_百度空间...
查看>>
顺序容器 (2)string类型操作
查看>>
转载:我最近的研究成果(IGeometry.Project and IGeometry.SpatialReference)
查看>>