結果

問題 No.2911 位相の公理
ユーザー Nzt3Nzt3
提出日時 2024-10-04 22:00:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,120 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 2,576 ms
コンパイル使用メモリ 252,220 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-04 22:00:19
合計ジャッジ時間 6,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,824 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 134 ms
6,816 KB
testcase_19 AC 322 ms
6,816 KB
testcase_20 AC 589 ms
6,820 KB
testcase_21 AC 667 ms
6,816 KB
testcase_22 AC 1,120 ms
6,816 KB
testcase_23 AC 659 ms
6,816 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);
  unordered_set<int> ok;
  rep(i,M){
    string S;
    cin>>S;
    rep(j,N)if(S[j]=='1')A[i]|=1<<j;
    ok.insert(A[i]);
  }
  if(!ok.contains((1<<N)-1)||!ok.contains(0)){
    cout<<"No\n";
    return 0;
  }
  bool yes=1;
  rep(i,M){
    rep(j,M){
      if(!ok.contains(A[i]&A[j]))yes=0;
      if(!ok.contains(A[i]|A[j]))yes=0;
    }
  }
  cout<<(yes?"Yes\n":"No\n");
}
0