結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | maple_1016 |
提出日時 | 2023-08-12 13:58:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 122 ms / 2,000 ms |
コード長 | 1,535 bytes |
コンパイル時間 | 2,701 ms |
コンパイル使用メモリ | 201,752 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-11-14 12:22:42 |
合計ジャッジ時間 | 5,044 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 122 ms
16,512 KB |
testcase_04 | AC | 63 ms
13,924 KB |
testcase_05 | AC | 60 ms
7,936 KB |
testcase_06 | AC | 98 ms
15,548 KB |
testcase_07 | AC | 59 ms
6,912 KB |
testcase_08 | AC | 119 ms
18,048 KB |
testcase_09 | AC | 80 ms
9,216 KB |
testcase_10 | AC | 119 ms
15,008 KB |
testcase_11 | AC | 106 ms
14,172 KB |
testcase_12 | AC | 75 ms
12,220 KB |
testcase_13 | AC | 30 ms
6,816 KB |
testcase_14 | AC | 59 ms
9,728 KB |
testcase_15 | AC | 44 ms
6,816 KB |
testcase_16 | AC | 99 ms
11,776 KB |
testcase_17 | AC | 24 ms
6,816 KB |
testcase_18 | AC | 79 ms
13,568 KB |
testcase_19 | AC | 56 ms
13,044 KB |
testcase_20 | AC | 49 ms
6,820 KB |
testcase_21 | AC | 39 ms
7,808 KB |
testcase_22 | AC | 30 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,816 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> #define rep(i,n) for(ll i=0;i<(n);++i) #define reps(i,n) for(ll i=1;i<=(n);++i) #define repr(i,n) for(ll i=2;i*i<=(n);++i) #define ll long long #define all(x) (x).begin(),(x).end() #define sz(x) ((string)(x).size()) #define pb push_back #define pob pop_back() #define MMod (ll)1000000007 #define mmod (ll)998244353 #define setp(x) setprecision((ll)(x)) #define INF (ll)(1000000000000000000) #define mp make_pair using namespace std; using pii=pair<int, int>; using pll=pair<ll,ll>; using vi=vector<int>; using vc=vector<char>; using vb=vector<bool>; using vl=vector<long long>; using vvi=vector<vi>; using vvl=vector<vl>; using vvc=vector<vc>; using vvb=vector<vb>; using vpi=vector<pii>; using vpl=vector<pair<ll,ll>>; using vs=vector<string>; using pqi=priority_queue<int>; vpi fs={mp(1,0),mp(-1,0),mp(0,1),mp(0,-1)}; const ll inf=1e18; int main(){ int n,m; cin>>n>>m; vvi p(2*n+1); rep(i,m){ int a,b; cin>>a>>b; p[a].pb(b); p[b].pb(a); } vi d(2*n+1,-1); int k=0; queue<int> bfs; map<int,int> aa; reps(i,2*n){ if(d[i]!=-1) continue; bfs.push(i); d[i]=k; aa[k]++; while(!bfs.empty()){ int a=bfs.front(); bfs.pop(); rep(i,p[a].size()){ if(d[p[a][i]]==-1){ bfs.push(p[a][i]); d[p[a][i]]=k; aa[k]++; } } } k++; } int count=0; rep(i,k) count+=aa[i]%2; cout<<count/2<<endl; return 0; }