結果

問題 No.860 買い物
ユーザー gratan_mogmoggratan_mogmog
提出日時 2019-08-09 23:33:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 2,279 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 181,540 KB
実行使用メモリ 9,580 KB
最終ジャッジ日時 2024-07-19 15:55:24
合計ジャッジ時間 3,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 52 ms
9,448 KB
testcase_08 AC 51 ms
9,448 KB
testcase_09 AC 52 ms
9,580 KB
testcase_10 AC 52 ms
9,452 KB
testcase_11 AC 36 ms
9,580 KB
testcase_12 AC 37 ms
9,572 KB
testcase_13 AC 49 ms
9,448 KB
testcase_14 AC 53 ms
9,444 KB
testcase_15 AC 38 ms
9,580 KB
testcase_16 AC 47 ms
9,444 KB
testcase_17 AC 38 ms
9,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <map>
#include <set>
#include <vector>
#include <algorithm>
#include <iostream>
#include <bitset>
#include <cassert>
#include <queue>
#include <stack>
#include <iomanip>
#include <math.h>
#include <time.h>
using namespace std;
#define rep(i, n) for (ll i = 0; i < (ll)n; i++)
#define repf(i, a, b) for (ll i = (ll)a; i < (ll)b; i++)
#define repr(i, a, b) for (ll i = (ll)a; i > (ll)b; i--)
#define all(v) (v).begin(), (v).end()
#define mp(a, b) make_pair(a, b)
#define pb(x) push_back(x)
#define eb(x) emplace_back(x)
#define F first
#define S second
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pdd;
typedef vector<ll> vll;
typedef vector<vll> vvll;
typedef vector<int> vii;
typedef vector<vii> vvii;
const ll mod = 1e9 + 7;
const int infi = 1147483600;
const ll infl = 1e17;
const char ENDL = '\n';

struct UnionFind
{
    vector<int> root;
    int n;
    void __init__(int sz)
    {
        n = sz;
        root.resize(n, -1);
    }
    int find(int x)
    {
        if (root[x] >= 0)
        {
            root[x] = find(root[x]);
            return root[x];
        }
        return x;
    }
    bool unit(int a, int b)
    {
        int ra, rb;
        ra = find(a);
        rb = find(b);
        if (ra == rb)
        {
            return false;
        }
        else if (root[ra] <= root[rb])
        {
            root[ra] += root[rb];
            root[rb] = ra;
        }
        else
        {
            root[rb] += root[ra];
            root[ra] = rb;
        }
        return true;
    }
    int count()
    {
        set<int> cnt;
        rep(i, n)
            cnt.insert(find(i));
        return cnt.size();
    }
};

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n;
    cin >> n;
    vector<pair<ll,pll>> edges;
    ll ans = 0;
    rep(i,n){
        ll c, d;
        cin >> c >> d;
        ans += c;
        if (i>0)edges.eb(mp(d, mp(i - 1, i)));
        edges.eb(mp(c, mp(i, n)));
    }
    sort(all(edges));
    UnionFind uf;
    uf.__init__(n + 1);
    for (auto p:edges){
        ll d = p.F;
        ll x = p.S.F, y = p.S.S;
        if (uf.unit(x,y)){
            ans += d;
        }
    }
    cout << ans << ENDL;
}
0