結果
問題 | No.860 買い物 |
ユーザー | ok |
提出日時 | 2019-08-10 14:38:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,217 bytes |
コンパイル時間 | 1,054 ms |
コンパイル使用メモリ | 69,120 KB |
実行使用メモリ | 7,512 KB |
最終ジャッジ日時 | 2024-07-19 17:07:11 |
合計ジャッジ時間 | 3,344 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 82 ms
6,480 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 59 ms
6,480 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; #define MAX 110000 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; }