結果
問題 | No.2270 T0空間 |
ユーザー | HIcoder |
提出日時 | 2023-07-23 22:10:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,722 bytes |
コンパイル時間 | 1,304 ms |
コンパイル使用メモリ | 116,228 KB |
実行使用メモリ | 38,144 KB |
最終ジャッジ日時 | 2024-09-25 01:36:47 |
合計ジャッジ時間 | 7,066 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 57 ms
9,472 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 163 ms
15,616 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 385 ms
38,144 KB |
ソースコード
/* WA */ #include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> #include<random> #include<bitset> //#include<fstream> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; int main(){ int N,M; cin>>N; cin>>M; vector<string> s(M); vector<ll> S(M); vector<bitset<17>> bS(M); for(int i=0;i<M;i++){ cin>>s[i]; ll num=0; for(char c:s[i]){ num*=2; num+=(int)(c-'0'); } S[i]=num; bS[i]=num; } for(int n0=0;n0<N;n0++){ for(int n1=n0+1;n1<N;n1++){ //if(n0==n1) continue; bool flag=false; for(auto& v:bS){ //Sのなかでn0,n1番目で異なるものが存在 if( bS[n0] != bS[n1] ){ flag=true; } } /* for(ll v:S){ //Sのなかでn0,n1番目で異なるものが存在 if( ((v>>n0)&1) != ((v>>n1)&1) ){ flag=true; } } */ /* for(string& v:s){ //Sのなかでn0,n1番目で異なるものが存在 if( v[n0] != v[n1]){ flag=true; } } */ if(!flag){ cout<<"No"<<endl; return 0; } } } cout<<"Yes"<<endl; return 0; }