結果
問題 | No.819 Enjapma game |
ユーザー | beet |
提出日時 | 2019-04-19 23:13:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 977 bytes |
コンパイル時間 | 2,062 ms |
コンパイル使用メモリ | 203,344 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-23 04:21:57 |
合計ジャッジ時間 | 3,017 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,812 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,944 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | AC | 3 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 3 ms
6,944 KB |
testcase_16 | AC | 3 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 3 ms
6,940 KB |
testcase_19 | AC | 3 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 3 ms
6,944 KB |
testcase_22 | AC | 3 ms
6,944 KB |
testcase_23 | AC | 3 ms
6,940 KB |
testcase_24 | AC | 3 ms
6,940 KB |
testcase_25 | AC | 3 ms
6,940 KB |
testcase_26 | AC | 3 ms
6,944 KB |
testcase_27 | AC | 3 ms
6,940 KB |
testcase_28 | AC | 3 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} //INSERT ABOVE HERE const Int n=6; const Int s=1<<n; Int dp[s]; Int dfs(Int b){ Int &res=dp[b]; if(~res) return res; res=0; for(Int i=0;i<n;i++) if((b>>i)&1) res|=!dfs(b^(1<<i)); for(Int i=1;i<n;i++){ if((~b>>i)&1) continue; if((b>>(i-1))&1) continue; res|=!dfs(b^(1<<i)^(1<<(i-1))); } return res; } signed main(){ /* memset(dp,-1,sizeof(dp)); for(Int b=0;b<s;b++) cout<<bitset<n>(b)<<":"<<dfs(b)<<endl; */ Int h,w; cin>>h>>w; vector<string> st(h); for(Int i=0;i<h;i++) cin>>st[i]; Int cnt[2]={}; for(Int i=0;i<h;i++){ for(Int j=0;j<w;j++){ if(st[i][j]=='-') continue; cnt[(i+j)&1]++; } } cnt[0]%=3; cnt[1]%=3; cout<<(cnt[0]==cnt[1]?"YES":"NO")<<endl; return 0; }