結果

問題 No.1056 2D Lamps
ユーザー betrue12betrue12
提出日時 2020-05-15 22:28:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,021 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 202,500 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-09-19 11:20:25
合計ジャッジ時間 4,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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; i++){
        for(int j=i+1; j<M; j++){
            printf("%d", (R[i] == R[j]));
        }
        printf("\n");
    }
    return 0;
}
0