結果

問題 No.2202 贅沢てりたまチキン
ユーザー i_am_noobi_am_noob
提出日時 2023-02-12 02:57:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 203,016 KB
実行使用メモリ 24,816 KB
最終ジャッジ日時 2024-07-08 11:53:40
合計ジャッジ時間 4,722 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,132 KB
testcase_01 AC 3 ms
8,192 KB
testcase_02 AC 3 ms
8,064 KB
testcase_03 AC 3 ms
8,064 KB
testcase_04 AC 3 ms
8,192 KB
testcase_05 AC 3 ms
8,052 KB
testcase_06 AC 4 ms
8,064 KB
testcase_07 AC 5 ms
8,064 KB
testcase_08 AC 5 ms
8,064 KB
testcase_09 AC 4 ms
8,032 KB
testcase_10 AC 4 ms
8,064 KB
testcase_11 AC 4 ms
8,064 KB
testcase_12 AC 4 ms
8,180 KB
testcase_13 AC 4 ms
8,180 KB
testcase_14 AC 65 ms
24,816 KB
testcase_15 AC 65 ms
24,704 KB
testcase_16 AC 47 ms
15,932 KB
testcase_17 AC 49 ms
15,800 KB
testcase_18 AC 26 ms
11,964 KB
testcase_19 AC 31 ms
14,460 KB
testcase_20 AC 58 ms
15,232 KB
testcase_21 AC 59 ms
15,228 KB
testcase_22 AC 34 ms
10,496 KB
testcase_23 AC 42 ms
10,864 KB
testcase_24 AC 38 ms
11,084 KB
testcase_25 AC 93 ms
17,136 KB
testcase_26 AC 62 ms
20,096 KB
testcase_27 AC 57 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using pii=pair<int,int>;

#define all(a) a.begin(),a.end()
#define pb push_back
#define sz(a) ((int)a.size())

const int maxn=200005;
int n,m,col[maxn];
vector<int> adj[maxn];
bool vis[maxn],flag;

void dfs(int u){
    vis[u]=1;
    for(auto v: adj[u]){
        if(vis[v]){
            if(col[u]^col[v]^1){
                flag=1;
            }
            continue;
        }
        col[v]=col[u]^1;
        dfs(v);
    }
}

signed main(){
    ios_base::sync_with_stdio(0),cin.tie(0);
    cin >> n >> m;
    for(int i=0; i<m; ++i){
        int u,v; cin >> u >> v; u--,v--;
        adj[u].pb(v),adj[v].pb(u);
    }
    for(int i=0; i<n; ++i) if(!vis[i]){
        flag=0;
        dfs(i);
        if(!flag){
            cout << "No\n";
            return 0;
        }
    }
    cout << "Yes\n";
}
0