結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-06-15 12:23:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 1,741 ms
コンパイル使用メモリ 178,912 KB
実行使用メモリ 11,216 KB
最終ジャッジ日時 2024-11-14 12:26:03
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 84 ms
11,216 KB
testcase_04 AC 13 ms
7,132 KB
testcase_05 AC 57 ms
7,680 KB
testcase_06 AC 54 ms
9,616 KB
testcase_07 AC 61 ms
7,424 KB
testcase_08 AC 56 ms
10,496 KB
testcase_09 AC 79 ms
8,960 KB
testcase_10 AC 86 ms
10,720 KB
testcase_11 AC 75 ms
9,844 KB
testcase_12 AC 47 ms
8,400 KB
testcase_13 AC 23 ms
6,816 KB
testcase_14 AC 43 ms
7,296 KB
testcase_15 AC 43 ms
6,820 KB
testcase_16 AC 93 ms
10,240 KB
testcase_17 AC 25 ms
6,816 KB
testcase_18 AC 42 ms
8,472 KB
testcase_19 AC 8 ms
6,820 KB
testcase_20 AC 47 ms
6,816 KB
testcase_21 AC 28 ms
6,816 KB
testcase_22 AC 30 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<n; ++i)
#define repl(i,m,n) for(ll i=m; i<n; ++i)

vector<vector<int>> Graph;
vector<bool> visited;

void dfs(int v, int &cnt){
    visited[v] = true;
    cnt++;
    for(int nv : Graph[v]){
        if(visited[nv]) continue;
        dfs(nv, cnt);
    }
}

int main(){
    int N, M;
    cin >> N >> M;

    Graph.resize(2*N);
    rep(i, 0, M){
        int A, B;
        cin >> A >> B;
        Graph[A-1].push_back(B-1);
        Graph[B-1].push_back(A-1);
    }

    visited.assign(2*N, false);
    int cnt = 0, ans = N;
    for(int i = 0; i < 2*N; ++i){
        if(visited[i]) continue;
        dfs(i, cnt);
        ans -= cnt / 2;
        cnt = 0;
    }
    cout << ans << endl;

    return 0;
}
0