結果

問題 No.819 Enjapma game
ユーザー beetbeet
提出日時 2019-04-19 23:13:37
言語 C++17
(gcc 11.2.0 + boost 1.78.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 977 bytes
コンパイル時間 1,758 ms
使用メモリ 3,604 KB
最終ジャッジ日時 2022-11-22 19:40:00
合計ジャッジ時間 3,157 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 1 ms
3,476 KB
testcase_01 AC 2 ms
3,472 KB
testcase_02 AC 2 ms
3,384 KB
testcase_03 AC 1 ms
3,376 KB
testcase_04 AC 2 ms
3,372 KB
testcase_05 AC 2 ms
3,500 KB
testcase_06 AC 1 ms
3,520 KB
testcase_07 AC 1 ms
3,472 KB
testcase_08 AC 2 ms
3,536 KB
testcase_09 AC 2 ms
3,500 KB
testcase_10 AC 1 ms
3,516 KB
testcase_11 AC 2 ms
3,572 KB
testcase_12 AC 2 ms
3,552 KB
testcase_13 AC 2 ms
3,504 KB
testcase_14 AC 2 ms
3,428 KB
testcase_15 AC 3 ms
3,536 KB
testcase_16 AC 3 ms
3,556 KB
testcase_17 AC 2 ms
3,580 KB
testcase_18 AC 2 ms
3,584 KB
testcase_19 AC 2 ms
3,440 KB
testcase_20 AC 2 ms
3,580 KB
testcase_21 AC 2 ms
3,532 KB
testcase_22 AC 2 ms
3,568 KB
testcase_23 AC 3 ms
3,592 KB
testcase_24 AC 3 ms
3,572 KB
testcase_25 AC 2 ms
3,428 KB
testcase_26 AC 3 ms
3,428 KB
testcase_27 AC 3 ms
3,604 KB
testcase_28 AC 2 ms
3,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0