ACM 10324 Q10324: Zeros and Ones
作法 : DP要小心範圍超過陣列的部份 以及 特殊數據EX0111 0/***********************************************************/#include<stdlib.h>#include<stdio.h>#include<string.h>char s[1000002];int DP[1000001];main(){ int t,a,b,c,x,y,n,time=0; while(scanf...