結果
問題 | No.1056 2D Lamps |
ユーザー | betrue12 |
提出日時 | 2020-05-15 22:29:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 209 ms / 3,000 ms |
コード長 | 1,023 bytes |
コンパイル時間 | 2,078 ms |
コンパイル使用メモリ | 202,500 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-09-19 11:26:00 |
合計ジャッジ時間 | 5,652 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
8,960 KB |
testcase_01 | AC | 7 ms
8,960 KB |
testcase_02 | AC | 6 ms
8,960 KB |
testcase_03 | AC | 182 ms
9,088 KB |
testcase_04 | AC | 183 ms
9,088 KB |
testcase_05 | AC | 187 ms
8,960 KB |
testcase_06 | AC | 181 ms
8,960 KB |
testcase_07 | AC | 209 ms
9,088 KB |
testcase_08 | AC | 207 ms
9,088 KB |
testcase_09 | AC | 158 ms
9,088 KB |
testcase_10 | AC | 159 ms
8,960 KB |
testcase_11 | AC | 182 ms
9,088 KB |
testcase_12 | AC | 192 ms
9,088 KB |
testcase_13 | AC | 7 ms
8,960 KB |
testcase_14 | AC | 48 ms
8,960 KB |
testcase_15 | AC | 34 ms
9,088 KB |
testcase_16 | AC | 22 ms
8,960 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N, M; cin >> N >> M; bitset<400*400> R[200]; for(int k=0; k<M; k++){ int A[210][210] = {0}, B[410][410] = {0}, exist[410][410] = {0}; char S[201][201]; for(int i=0; i<N; i++) scanf("%s", S[i]); for(int i=0; i<N-1; i++) for(int j=0; j<N-1; j++){ for(int x=i; x<=i+1; x++) for(int y=j; y<=j+1; y++) A[i][j] ^= (S[x][y] == '#'); B[i+j][(i-j)+N-2] = A[i][j]; exist[i+j][(i-j)+N-2] = 1; } vector<int> res; for(int i=0; i<2*N-2; i++) for(int j=0; j<2*N-2; j++){ int v = 0, ex = 1; for(int x=i; x<=i+2; x+=2) for(int y=j; y<=j+2; y+=2){ ex &= exist[x][y]; v ^= B[x][y]; } if(v && ex) R[k][i*2*N+j] = 1; } } for(int i=0; i<M-1; i++){ for(int j=i+1; j<M; j++){ printf("%d", (R[i] == R[j])); } printf("\n"); } return 0; }