結果

問題 No.2270 T0空間
ユーザー HIcoder
提出日時 2023-07-23 21:50:11
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,039 bytes
コンパイル時間 1,140 ms
コンパイル使用メモリ 108,240 KB
最終ジャッジ日時 2025-02-15 18:41:10
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
#include<random>
//#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<int> S(M);
    for(int i=0;i<M;i++){
        cin>>s[i];

        int num=0;
        for(char c:s[i]){
            num*=2;
            num+=c-'0';
        }
        S[i]=num;
    }

    for(int n0=0;n0<N;n0++){
        for(int n1=0;n1<N;n1++){
            if(n0==n1) continue;
            
            bool flag=false;

            for(int v:S){
                if( ((v>>n0)&1) != ((v>>n1)&1) ){
                    flag=true;
                }
            }

            if(!flag){
                cout<<"No"<<endl;
                return 0;
            }
        }
    }

     cout<<"Yes"<<endl;
    return 0;

}
0