結果
問題 | No.1566 All Even |
ユーザー | chocorusk |
提出日時 | 2021-08-11 12:30:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,893 bytes |
コンパイル時間 | 3,273 ms |
コンパイル使用メモリ | 190,148 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-24 23:00:58 |
合計ジャッジ時間 | 6,237 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | RE | - |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | RE | - |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #include <atcoder/all> #define popcount __builtin_popcount using namespace std; using namespace atcoder; typedef long long ll; typedef pair<int, int> P; int main() { using mint=modint998244353; int n, m; cin>>n>>m; int x[101], y[101], z[101]; for(int i=0; i<m; i++){ cin>>x[i]>>y[i]>>z[i]; x[i]--; y[i]--; } int n1=n; if(n>=6){ if(n&1) n1=7; else n1=6; } assert(n<=5); mint ans=0; for(int i=0; i<(1<<n1); i+=2){ for(int j=0; j<(1<<n1); j++){ bool dame=0; if(n1>=6){ for(int x1=2; x1<n1-2; x1++){ for(int y1=2; y1<n1-2; y1++){ int t=((i>>x1)&1)^((j>>y1)&1); if(t!=1){ dame=1; } } } if(dame) continue; } for(int k=0; k<m; k++){ int x1=x[k], y1=y[k]; if(n1>=6){ if(2<=x1 && x1<n-2) x1=2; else if(x1>=n-2) x1=n1-(n-x1); if(2<=y1 && y1<n-2) y1=2; else if(y1>=n-2) y1=n1-(n-y1); } int t=((i>>x1)&1)^((j>>y1)&1); if(t!=z[k]){ dame=1; break; } } if(dame) continue; for(int x0=0; x0<n1; x0++){ for(int y0=0; y0<n1; y0++){ for(int k=3; x0+k<=n1 && y0+k<=n1; k+=2){ int s=0; for(int x1=x0; x1<x0+k; x1++){ for(int y1=y0; y1<y0+k; y1++){ int t=((i>>x1)&1)^((j>>y1)&1); s^=t; } } if(s!=1){ dame=1; break; } } if(dame) break; } if(dame) break; } if(dame) continue; ans++; } } cout<<ans.val()<<endl; return 0; }