Submission #138606

# Submission time Handle Problem Language Result Execution time Memory
138606 2019-07-30T07:17:36 Z 이온조(#3319) Who wants to live forever? (CERC12_B) C++14
0 / 1
1000 ms 2180 KB
#include <bits/stdc++.h>
using namespace std;

int A[200009], B[200009];

bool sim(int N, int c) {
	bool f1 = 0;
	while(c--) {
		f1 = 0;
		for(int i=1; i<=N; i++) B[i] = (A[i-1] ^ A[i+1]);
		for(int i=1; i<=N; i++) A[i] = B[i], f1 |= A[i];
		if(!f1) break;
	}
	bool f = 0;
	for(int i=1; i<=N; i++) f |= A[i];
	return f;
}

int main() {
	cin.tie(0);
	ios::sync_with_stdio(0);
	int T; cin >> T;
	while(T--) {
		string S; cin >> S;
		int N = S.size();
		bool f = (((N+1) &- (N+1)) != N+1);
		if(f) {
			for(int i=1; i<=N; i++) A[i] = (S[i-1] == '1');
			A[0] = A[N+1] = 0;
			f &= sim(N, 3);
			if(N % 4 == 3 && f) f &= sim(N, (int)sqrt(N*36) + 100);
		}
		puts(f ? "LIVES" : "DIES");
	}
	// for(int k=1; k<=100; k++) {
	// 	for(int j=1; j<=k; j++) A[j] = 0;
	// 	A[1] = 1;
	// 	if(!sim(k, 10000)) printf("k: %d\n", k);
	// }
	return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Correct 18 ms 632 KB Output is correct
4 Correct 57 ms 376 KB Output is correct
5 Execution timed out 1077 ms 2180 KB Time limit exceeded