結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー Nzt3Nzt3
提出日時 2023-08-12 19:32:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 211,592 KB
実行使用メモリ 11,072 KB
最終ジャッジ日時 2024-11-14 12:24:35
合計ジャッジ時間 3,671 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 55 ms
11,072 KB
testcase_04 AC 15 ms
7,168 KB
testcase_05 AC 29 ms
7,040 KB
testcase_06 AC 36 ms
9,624 KB
testcase_07 AC 30 ms
6,816 KB
testcase_08 AC 36 ms
10,472 KB
testcase_09 AC 37 ms
8,184 KB
testcase_10 AC 53 ms
10,736 KB
testcase_11 AC 45 ms
9,728 KB
testcase_12 AC 29 ms
8,316 KB
testcase_13 AC 14 ms
6,820 KB
testcase_14 AC 26 ms
7,168 KB
testcase_15 AC 18 ms
6,816 KB
testcase_16 AC 47 ms
9,460 KB
testcase_17 AC 12 ms
6,816 KB
testcase_18 AC 27 ms
8,448 KB
testcase_19 AC 12 ms
6,816 KB
testcase_20 AC 20 ms
6,816 KB
testcase_21 AC 17 ms
6,816 KB
testcase_22 AC 15 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,M;
  cin>>N>>M;
  vector G(N*2,vector(0,0));
  for(int i=0;i<M;i++){
    int A,B;
    cin>>A>>B;
    --A,--B;
    G[A].push_back(B);
    G[B].push_back(A);
  }
  vector<bool>v(N*2);
  int ans=0;
  for(int i=0;i<N*2;i++){
    if(v[i])continue;
    queue<int>bfs;
    bfs.push(i);
    v[i]=true;
    int s=0;
    while(bfs.size()){
      int c=bfs.front();
      ++s;
      bfs.pop();
      for(int j:G[c]){
        if(!v[j]){
          v[j]=true;
          bfs.push(j);
        }
      }
    }
    ans+=s%2;
  }
  cout<<ans/2<<'\n';
}
0