結果

問題 No.1382 Travel in Mitaru city
ユーザー carrot46carrot46
提出日時 2021-02-07 20:55:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 2,420 bytes
コンパイル時間 1,893 ms
コンパイル使用メモリ 178,236 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-04 14:01:59
合計ジャッジ時間 6,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 27 ms
6,944 KB
testcase_07 AC 22 ms
6,940 KB
testcase_08 AC 13 ms
6,944 KB
testcase_09 AC 30 ms
6,944 KB
testcase_10 AC 27 ms
6,940 KB
testcase_11 AC 68 ms
8,960 KB
testcase_12 AC 49 ms
9,088 KB
testcase_13 AC 49 ms
9,088 KB
testcase_14 AC 42 ms
8,704 KB
testcase_15 AC 44 ms
8,704 KB
testcase_16 AC 71 ms
12,260 KB
testcase_17 AC 71 ms
12,160 KB
testcase_18 AC 86 ms
12,288 KB
testcase_19 AC 76 ms
12,288 KB
testcase_20 AC 74 ms
12,160 KB
testcase_21 AC 71 ms
12,288 KB
testcase_22 AC 71 ms
12,032 KB
testcase_23 AC 68 ms
12,112 KB
testcase_24 AC 88 ms
12,160 KB
testcase_25 AC 77 ms
12,032 KB
testcase_26 AC 73 ms
12,288 KB
testcase_27 AC 63 ms
12,160 KB
testcase_28 AC 64 ms
12,160 KB
testcase_29 AC 67 ms
12,288 KB
testcase_30 AC 65 ms
12,288 KB
testcase_31 AC 55 ms
10,240 KB
testcase_32 AC 69 ms
11,776 KB
testcase_33 AC 60 ms
11,136 KB
testcase_34 AC 39 ms
8,704 KB
testcase_35 AC 27 ms
6,940 KB
testcase_36 AC 40 ms
10,624 KB
testcase_37 AC 8 ms
6,944 KB
testcase_38 AC 44 ms
11,264 KB
testcase_39 AC 13 ms
6,940 KB
testcase_40 AC 33 ms
9,216 KB
testcase_41 AC 37 ms
9,984 KB
testcase_42 AC 44 ms
11,392 KB
testcase_43 AC 39 ms
10,240 KB
testcase_44 AC 18 ms
6,944 KB
testcase_45 AC 36 ms
9,600 KB
testcase_46 AC 15 ms
6,940 KB
testcase_47 AC 53 ms
11,664 KB
testcase_48 AC 33 ms
9,088 KB
testcase_49 AC 53 ms
12,256 KB
testcase_50 AC 24 ms
7,328 KB
testcase_51 AC 59 ms
10,496 KB
testcase_52 AC 67 ms
11,872 KB
testcase_53 AC 16 ms
6,940 KB
testcase_54 AC 30 ms
7,168 KB
testcase_55 AC 65 ms
11,520 KB
testcase_56 AC 20 ms
6,944 KB
testcase_57 AC 40 ms
8,832 KB
testcase_58 AC 9 ms
6,944 KB
testcase_59 AC 19 ms
6,944 KB
testcase_60 AC 64 ms
11,264 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 1 ms
6,944 KB
testcase_63 AC 8 ms
6,940 KB
testcase_64 AC 3 ms
6,944 KB
testcase_65 AC 2 ms
6,940 KB
testcase_66 AC 3 ms
6,940 KB
testcase_67 AC 3 ms
6,944 KB
testcase_68 AC 3 ms
6,940 KB
testcase_69 AC 2 ms
6,940 KB
testcase_70 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <chrono>
//#pragma GCC optimize("Ofast")
using namespace std;
#define reps(i,s,n) for(int i = s; i < n; i++)
#define rep(i,n) reps(i,0,n)
#define Rreps(i,n,e) for(int i = n - 1; i >= e; --i)
#define Rrep(i,n) Rreps(i,n,0)
#define ALL(a) a.begin(), a.end()

using ll = long long;
using vec = vector<ll>;
using mat = vector<vec>;

ll N,M,H,W,Q,K,A,B;
string S;
using P = pair<ll, ll>;
const ll INF = (1LL<<60);

template<class T> bool chmin(T &a, const T b){
    if(a > b) {a = b; return true;}
    else return false;
}
template<class T> bool chmax(T &a, const T b){
    if(a < b) {a = b; return true;}
    else return false;
}
template<class T> void my_printv(std::vector<T> v,bool endline = true){
    if(!v.empty()){
        for(std::size_t i{}; i<v.size()-1; ++i) std::cout<<v[i]<<" ";
        std::cout<<v.back();
    }
    if(endline) std::cout<<std::endl;
}

class union_find{
        vector<long> parent, tree_size;
    public:
        union_find(unsigned long _n) : parent(_n), tree_size(_n, 1){
            for(unsigned long i = 0; i < _n; ++i)parent[i] = i;
        }
        ll find(ll x){
            while(parent[x] != x)x = parent[x] = parent[parent[x]];
            return x;
        }
        void merge(ll a, ll b){
            a = find(a);
            b = find(b);
	    if(a==b) return;
            if(tree_size[a] < tree_size[b])swap(a, b);
            tree_size[a] += tree_size[b];
            parent[b] = a;
            return;
        }
	bool same(ll a, ll b){
	    a = find(a);
	    b = find(b);
	    return a == b;
	}
    };
//uf.mergeのように使う
//ufはMAX_N+1でとるか、代入時に0-indexedにする

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cin>>N>>M;
    int s, t; cin>>s>>t;
    --s; --t;
    vec p(N), ord(N);
    mat G(N);
    rep(i, N) cin>>p[i];
    rep(i, M){
        int a, b; cin>>a>>b;
        --a; --b;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    union_find uf(N);
    iota(ALL(ord), 0);
    sort(ALL(ord), [&](int x, int y){
        return p[x] > p[y];
    });
    ll X = p[s], res = 0;
    rep(i, N){
        int v = ord[i];
        //cout<<v<<endl;
        for(int to : G[v]){
            if(p[v] <= p[to]) uf.merge(v, to);
        }
        if(uf.same(s, v)) res += chmin(X, p[v]);
        //rep(j, N) rep(k, N) cout<<uf.same(j, k)<<" \n"[k == N - 1];
    }
    cout<<res<<endl;
}
0