結果
問題 | No.1566 All Even |
ユーザー | ぷら |
提出日時 | 2021-06-26 13:56:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,777 bytes |
コンパイル時間 | 2,252 ms |
コンパイル使用メモリ | 206,320 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 10:30:20 |
合計ジャッジ時間 | 3,314 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 22 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 22 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N,M; cin >> N >> M; if(N >= 6) { cout << 0 << endl; return 0; } vector<int>x(M),y(M),z(M); for(int i = 0; i < M; i++) { cin >> x[i] >> y[i] >> z[i]; x[i]--; y[i]--; } if(N == 5) { int ans = 1; for(int i = 0; i < M; i++) { if(x[i] == 2 && z[i] == 0) { ans = 0; } if(x[i] != 2 && z[i] == 1) { ans = 0; } } int ans2 = 1; for(int i = 0; i < M; i++) { if(y[i] == 2 && z[i] == 0) { ans2 = 0; } if(y[i] != 2 && z[i] == 1) { ans2 = 0; } } cout << ans+ans2 << endl; return 0; } int ans = 0; for(int i = 0; i < (1 << N*N); i++) { vector<vector<int>>cnt(N,vector<int>(N)); for(int j = 0; j < N*N; j++) { cnt[j/N][j%N] = 1 & (i >> j); } bool flag = true; for(int j = 0; j < M; j++) { if(cnt[x[j]][y[j]] != z[j]) { flag = false; } } for(int t = 1; t <= 3; t++) { for(int j = 0; j < N-t; j++) { for(int k = 0; k < N-t; k++) { int res = 0; for(int l = 0; l <= t; l++) { for(int m = 0; m <= t; m++) { res += cnt[j+l][k+m]; } } if(res%2 == t%2) { flag = false; } } } } if(flag) { ans++; } } cout << ans << endl; }