# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
138539 | 2019-07-30T06:36:47 Z | 이온조(#3319) | Who wants to live forever? (CERC12_B) | C++14 | 1000 ms | 888 KB |
#include <bits/stdc++.h> using namespace std; char S[200009]; bool A[200009], B[200009]; bool sim(int N, int c) { while(c--) { 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]; } bool f = 0; for(int i=1; i<=N; i++) f |= A[i]; return f; } int main() { int T; scanf("%d",&T); while(T--) { scanf(" %s", S+1); int N = strlen(S+1); bool f = (((N+1) &- (N+1)) != N+1); for(int i=1; i<=N; i++) A[i] = (S[i] == '1'); A[0] = A[N+1] = 0; f &= sim(N, 260); puts(f ? "LIVES" : "DIES"); } // for(int k=1; k<=30; k++) { // int cnt = 0; // for(int i=0; i<(1<<k); i++) { // for(int j=0; j<k; j++) A[j+1] = ((i >> j) & 1); // if(!sim(k, 300)) { // for(int j=0; j<k; j++) printf("%d", ((i>>j) & 1)); // puts(""); // ++cnt; // } // if(cnt > 50) break; // } // printf("k: %d, cnt: %d\n", k, cnt); // } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 445 ms | 888 KB | Output is correct |
4 | Correct | 74 ms | 376 KB | Output is correct |
5 | Execution timed out | 1065 ms | 888 KB | Time limit exceeded |