博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #238 (Div. 1) 解题报告
阅读量:5748 次
发布时间:2019-06-18

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

Problem A  

思路:奇数次操作去反即可。

代码如下:

1 /************************************************** 2  * Author     : xiaohao Z 3  * Blog     : http://www.cnblogs.com/shu-xiaohao/ 4  * Last modified : 2014-03-22 23:23 5  * Filename     : Codeforce_238_1_A.cpp 6  * Description     :  7  * ************************************************/ 8  9 #include 
10 #include
11 #include
12 #include
13 #include
14 #include
15 #include
16 #include
17 #include
18 #include
19 #include
20 #define MP(a, b) make_pair(a, b)21 #define PB(a) push_back(a)22 23 using namespace std;24 typedef long long ll;25 typedef pair
pii;26 typedef pair
puu;27 typedef pair
pid;28 typedef pair
pli;29 typedef pair
pil;30 31 const int INF = 0x3f3f3f3f;32 const double eps = 1E-6;33 const int LEN = 1010;34 int Map[LEN][LEN];35 36 int main()37 {38 // freopen("in.txt", "r", stdin);39 40 int n;41 while(scanf("%d", &n)!=EOF){42 for(int i=0; i
View Code

Problem B 

题意:在1-1000000告诉你A集合然后要你取出一个B集合使得A集合中每一个数减一之和为s减B中每一个数之和。

思路:由于每一个数都有唯一对应的另一个数所以对于两个数中只有一个那就输出一下另外一个,然后若是两个都在A中那么计数一下,在最后再找一对替代就可。

代码如下:

1 /************************************************** 2  * Author     : xiaohao Z 3  * Blog     : http://www.cnblogs.com/shu-xiaohao/ 4  * Last modified : 2014-03-22 23:24 5  * Filename     : Codeforce_238_1_B.cpp 6  * Description     :  7  * ************************************************/ 8  9 #include 
10 #include
11 #include
12 #include
13 #include
14 #include
15 #include
16 #include
17 #include
18 #include
19 #include
20 #define MP(a, b) make_pair(a, b)21 #define PB(a) push_back(a)22 23 using namespace std;24 typedef long long ll;25 typedef pair
pii;26 typedef pair
puu;27 typedef pair
pid;28 typedef pair
pli;29 typedef pair
pil;30 31 const int INF = 0x3f3f3f3f;32 const double eps = 1E-6;33 const int LEN = 1000000+10;34 int n, f[LEN];35 36 int main()37 {38 // freopen("in.txt", "r", stdin);39 40 int s = 1000000;41 while(cin >> n){42 memset(f, 0, sizeof f);43 for(int i=0; i
> tmp; 46 f[tmp] = 1;47 }48 int cnt = 0;49 for(int i=1; i<=500000; i++){50 if(f[i] == 1){51 if(f[s-(i-1)] == 0) f[s-(i-1)] = 2;52 else cnt++;53 }54 if(f[s-(i-1)] == 1){55 if(f[i] == 0) f[i] = 2;56 }57 }58 for(int i=1; i<=500000; i++){59 if(cnt == 0) break;60 if(f[i] == 0 && f[s-(i-1)] == 0){61 f[i] = f[s-(i-1)] = 2;62 cnt--;63 }64 }65 int ans = 0;66 for(int i=1; i<=1000000; i++) if(f[i] == 2) ans++;67 cout << ans << endl;68 for(int i=1; i<=1000000; i++){69 if(f[i] == 2) cout << i << ' ';70 }71 cout << endl;72 }73 return 0;74 }
View Code

 

转载于:https://www.cnblogs.com/shu-xiaohao/p/3620960.html

你可能感兴趣的文章
鼠标停留在GridView某一行时行的颜色改变
查看>>
系列3:WAS Liberty Profile hello mysql jdbc
查看>>
基础知识:python模块的导入
查看>>
Android MVC之我的实现
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
关于批处理-1
查看>>
Tomcat部署Web应用方法总结
查看>>
Python3 django2.0 字段加密 解密 AES
查看>>
CCNA实验之:网络地址转换(NAT)实验
查看>>
计算机网络原理笔记-停止等待协议
查看>>
确定当前记录和下一条记录之间相差的天数
查看>>
sql语句返回主键SCOPE_IDENTITY()
查看>>
机器学习开源项目精选TOP30
查看>>
/etc/resolv.conf文件详解
查看>>
【转】VC的MFC中重绘函数的使用总结(整理)
查看>>
JQuery日记_5.13 Sizzle选择器(六)选择器的效率
查看>>
oracle查看经常使用的系统信息
查看>>
Django_4_视图
查看>>
Linux的netstat命令使用
查看>>