結果
問題 | No.1293 2種類の道路 |
ユーザー | どらら |
提出日時 | 2020-11-21 16:37:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 181 ms / 2,000 ms |
コード長 | 1,724 bytes |
コンパイル時間 | 2,128 ms |
コンパイル使用メモリ | 189,524 KB |
実行使用メモリ | 24,396 KB |
最終ジャッジ日時 | 2024-07-23 15:45:26 |
合計ジャッジ時間 | 5,320 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 160 ms
10,204 KB |
testcase_10 | AC | 162 ms
10,208 KB |
testcase_11 | AC | 161 ms
10,208 KB |
testcase_12 | AC | 162 ms
10,204 KB |
testcase_13 | AC | 158 ms
10,208 KB |
testcase_14 | AC | 159 ms
24,268 KB |
testcase_15 | AC | 162 ms
24,396 KB |
testcase_16 | AC | 160 ms
15,204 KB |
testcase_17 | AC | 181 ms
18,656 KB |
testcase_18 | AC | 138 ms
20,824 KB |
testcase_19 | AC | 144 ms
16,460 KB |
testcase_20 | AC | 148 ms
16,588 KB |
testcase_21 | AC | 89 ms
6,940 KB |
testcase_22 | AC | 89 ms
6,944 KB |
testcase_23 | AC | 88 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; class UnionFind{ int n; vector<int> data; public: UnionFind(int _n):n(_n),data(_n,-1){} bool link(int a, int b){ //if new link, then true. int ra=find_root(a); int rb=find_root(b); if(ra!=rb){ if(data[rb]<data[ra]) swap(ra,rb); data[ra]+=data[rb]; data[rb]=ra; } return (ra!=rb); } bool check(int a, int b){ //if same set, then true. return (find_root(a)==find_root(b)); } int find_root(int a){ return ((data[a]<0)?a:(data[a]=find_root(data[a]))); } }; int main(){ int N, D, W; cin >> N >> D >> W; vector<pair<int,int>> v, w; rep(i,D){ int a, b; cin >> a >> b; a--; b--; v.emplace_back(a,b); } rep(i,W){ int a, b; cin >> a >> b; a--; b--; w.emplace_back(a,b); } UnionFind red(N); rep(i,D){ red.link(v[i].first, v[i].second); } UnionFind blue(N); rep(i,W){ blue.link(w[i].first, w[i].second); } map<int,map<int,int>> belong_blue; map<int,int> num_blue, num_red; rep(i,N){ belong_blue[blue.find_root(i)][red.find_root(i)]++; num_blue[blue.find_root(i)]++; num_red[red.find_root(i)]++; } ll ret = 0; FOR(it,belong_blue){ int bi = it->first; map<int,int>& m = it->second; ll nb = num_blue[bi]; ll nr = 0; FOR(it2,m){ nr += num_red[it2->first]; } ret += nb * nr; } ret -= N; cout << ret << endl; return 0; }