結果

問題 No.2911 位相の公理
ユーザー Nzt3Nzt3
提出日時 2024-10-04 22:02:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 202,368 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-04 22:02:31
合計ジャッジ時間 2,697 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 5 ms
5,248 KB
testcase_19 AC 22 ms
5,248 KB
testcase_20 AC 24 ms
5,248 KB
testcase_21 AC 26 ms
5,248 KB
testcase_22 AC 26 ms
5,248 KB
testcase_23 AC 24 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define rep2(i,l,r) for(int i=l;i<(int)r;i++)
#define all(v) v.begin(),v.end()

int main(){
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int N,M;
  cin>>N>>M;
  vector<int> A(M);
  int ok[1<<N];
  fill(ok,ok+(1<<N),0);
  rep(i,M){
    string S;
    cin>>S;
    rep(j,N)if(S[j]=='1')A[i]|=1<<j;
    ok[A[i]]=1;
  }
  if(!ok[(1<<N)-1]||!ok[0]){
    cout<<"No\n";
    return 0;
  }
  bool yes=1;
  rep(i,M){
    rep(j,M){
      if(!ok[A[i]&A[j]])yes=0;
      if(!ok[A[i]|A[j]])yes=0;
    }
  }
  cout<<(yes?"Yes\n":"No\n");
}
0