比赛链接:http://codeforces.com/gym/100257
比赛出了A,B,H,I, 队友在比赛中恶搞K题TLE,导致F题没时间调试,赛后加了一句flag = 0,F题就AC了,一个小细节没注意。
B题保存了一份好的代码
F题 是一半模拟 一半DP, F题代码在下面。
K题恶搞 https://github.com/ACM-Obsidian/Obsidian/blob/master/2013-10-20/K.cpp
B:
#include
#include
#include
#include
#include
typedef unsigned long long ull;
typedef long long ll;
char s[111];
int n;
int go(int pos) {
if(pos==n) return 1;
int i;
for(i=0;i
F:
#include
#include
#include
#include