06 2018 档案

摘要:#include#include#includeusing namespace std;int a, b;int main(){ scanf("%d%d", &a, &b); printf("%d", a+b); return 0;} ... 阅读全文
posted @ 2018-06-17 14:47 Stooge 阅读(99) 评论(0) 推荐(0)
摘要:T1OJ传送门洛谷传送门总结:一道比较简单的模拟题,这道题当时把if_push[Tra[tot_head]]= 0;写成了if_push[tot_head]= 0;差点没调出来…发现真相的我吐血三百升…#include#include#include#inc... 阅读全文
posted @ 2018-06-17 14:43 Stooge 阅读(103) 评论(0) 推荐(0)
摘要:T1 无线网络发射器选址一道很水的题,唯一需要注意的点就是判断边界,不然就会像我一样只有10分#include#include#includeusing namespace std;typedef long long ll;const int MAXN = 200;l... 阅读全文
posted @ 2018-06-09 11:41 Stooge 阅读(167) 评论(0) 推荐(0)
摘要:T1 生活大爆炸版石头剪刀布这道题是一道很水的模拟题,写的时候注意把表中未给出的输赢关系自己补上就是了。#include#include#includeusing namespace std;const int MAXN = 205;int N, Na, Nb;int... 阅读全文
posted @ 2018-06-09 11:21 Stooge 阅读(185) 评论(0) 推荐(0)