結果
問題 | No.860 買い物 |
ユーザー | ok |
提出日時 | 2019-08-10 14:39:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 116 ms / 1,000 ms |
コード長 | 1,239 bytes |
コンパイル時間 | 676 ms |
コンパイル使用メモリ | 70,928 KB |
実行使用メモリ | 9,680 KB |
最終ジャッジ日時 | 2024-07-19 17:07:15 |
合計ジャッジ時間 | 2,751 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 115 ms
9,676 KB |
testcase_08 | AC | 115 ms
9,548 KB |
testcase_09 | AC | 114 ms
9,552 KB |
testcase_10 | AC | 115 ms
9,552 KB |
testcase_11 | AC | 87 ms
9,548 KB |
testcase_12 | AC | 84 ms
9,604 KB |
testcase_13 | AC | 112 ms
9,556 KB |
testcase_14 | AC | 116 ms
9,548 KB |
testcase_15 | AC | 63 ms
9,552 KB |
testcase_16 | AC | 92 ms
9,680 KB |
testcase_17 | AC | 113 ms
9,428 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; #define MAX 110000 #define int long long int per[MAX], siz[MAX]; void init(int n){ for(int i = 0; i < n; i++){ per[i] = i; siz[i] = 1; } } int find(int x){ if(x == per[x]) return x; else return per[x] = find(per[x]); } void unite(int x, int y){ x = find(x); y = find(y); if(x == y) return; if(siz[x] > siz[y]){ siz[x] += siz[y]; per[y] = x; } else { siz[y] += siz[x]; per[x] = y; } } bool same(int x, int y){ return find(x) == find(y); } int kruskal(vector<pair<int,pair<int,int> > > &edge){ int res = 0; sort(edge.begin(), edge.end()); for(int i = 0; i < edge.size(); i++){ if(same(edge[i].second.first, edge[i].second.second)) continue; unite(edge[i].second.first, edge[i].second.second); res += edge[i].first; } return res; } signed main(){ int N, sum = 0; int C, D; vector<pair<int,pair<int,int> > > edge; cin>>N; for(int i = 1; i <= N; i++){ cin>>C>>D; sum += C; edge.push_back(make_pair(C ,make_pair(0,i))); if(i != 1) edge.push_back(make_pair(D ,make_pair(i-1,i))); } init(N+2); cout<<sum + kruskal(edge)<<endl; return 0; }