結果
問題 | No.2200 Weird Shortest Path |
ユーザー | misty1999 |
提出日時 | 2022-06-09 11:19:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 95 ms / 2,000 ms |
コード長 | 5,638 bytes |
コンパイル時間 | 1,948 ms |
コンパイル使用メモリ | 188,744 KB |
実行使用メモリ | 21,816 KB |
最終ジャッジ日時 | 2024-06-28 21:46:45 |
合計ジャッジ時間 | 6,127 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
15,044 KB |
testcase_01 | AC | 7 ms
15,060 KB |
testcase_02 | AC | 6 ms
15,224 KB |
testcase_03 | AC | 8 ms
15,104 KB |
testcase_04 | AC | 7 ms
15,248 KB |
testcase_05 | AC | 6 ms
15,188 KB |
testcase_06 | AC | 6 ms
15,232 KB |
testcase_07 | AC | 8 ms
15,232 KB |
testcase_08 | AC | 7 ms
15,332 KB |
testcase_09 | AC | 7 ms
15,160 KB |
testcase_10 | AC | 8 ms
15,232 KB |
testcase_11 | AC | 7 ms
15,188 KB |
testcase_12 | AC | 8 ms
15,104 KB |
testcase_13 | AC | 7 ms
15,104 KB |
testcase_14 | AC | 7 ms
15,028 KB |
testcase_15 | AC | 7 ms
15,232 KB |
testcase_16 | AC | 6 ms
15,192 KB |
testcase_17 | AC | 33 ms
16,664 KB |
testcase_18 | AC | 52 ms
18,368 KB |
testcase_19 | AC | 84 ms
21,536 KB |
testcase_20 | AC | 82 ms
21,576 KB |
testcase_21 | AC | 37 ms
18,376 KB |
testcase_22 | AC | 47 ms
18,272 KB |
testcase_23 | AC | 87 ms
21,416 KB |
testcase_24 | AC | 20 ms
16,768 KB |
testcase_25 | AC | 81 ms
21,480 KB |
testcase_26 | AC | 83 ms
21,632 KB |
testcase_27 | AC | 35 ms
18,448 KB |
testcase_28 | AC | 67 ms
21,508 KB |
testcase_29 | AC | 85 ms
21,652 KB |
testcase_30 | AC | 85 ms
21,620 KB |
testcase_31 | AC | 53 ms
18,436 KB |
testcase_32 | AC | 87 ms
21,432 KB |
testcase_33 | AC | 88 ms
21,688 KB |
testcase_34 | AC | 88 ms
21,688 KB |
testcase_35 | AC | 88 ms
21,688 KB |
testcase_36 | AC | 84 ms
21,692 KB |
testcase_37 | AC | 86 ms
21,628 KB |
testcase_38 | AC | 85 ms
21,688 KB |
testcase_39 | AC | 46 ms
18,616 KB |
testcase_40 | AC | 72 ms
21,688 KB |
testcase_41 | AC | 43 ms
18,488 KB |
testcase_42 | AC | 69 ms
21,560 KB |
testcase_43 | AC | 92 ms
21,524 KB |
testcase_44 | AC | 93 ms
21,816 KB |
testcase_45 | AC | 95 ms
21,816 KB |
コンパイルメッセージ
main.cpp: In function 'void cl(T& ...)': main.cpp:112:36: warning: fold-expressions only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 112 | void cl(T &...t) { (..., (t.clear())); } | ^ main.cpp: In function 'void in(T& ...)': main.cpp:114:35: warning: fold-expressions only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 114 | void in(T &...t) { (..., (cin >> t)); } | ^ main.cpp: In function 'void solve()': main.cpp:238:10: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 238 | auto [z, x, y] = VT[i]; | ^
ソースコード
#include <bits/stdc++.h> #define endl "\n" using namespace std; typedef long long ll; typedef long double ld; typedef vector<ll> vl; typedef pair<ll, ll> PP; #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #pragma GCC target("avx") #pragma comment(linker, "/stack:200000000") #define overload4(_1, _2, _3, _4, name, ...) name #define overload3(_1, _2, _3, name, ...) name #define rep1(n) for (ll i = 0; i < n; ++i) #define rep2(i, n) for (ll i = 0; i < n; ++i) #define rep3(i, a, b) for (ll i = a; i < b; ++i) #define rep4(i, a, b, c) for (ll i = a; i < b; i += c) #define rep(...) overload4(__VA_ARGS__, rep4, rep3, rep2, rep1)(__VA_ARGS__) #define rrep1(n) for (ll i = n; i--;) #define rrep2(i, n) for (ll i = n; i--;) #define rrep3(i, b, a) for (ll i = b; i-- > (a);) #define rrep4(i, b, a, c) \ for (ll i = (a) + ((b) - (a)-1) / (c) * (c); i >= (a); i -= c) #define rrep(...) \ overload4(__VA_ARGS__, rrep4, rrep3, rrep2, rrep1)(__VA_ARGS__) #define elif else if ll beki(ll i) { return 1ll << i; } #define all(v) v.begin(), v.end() #define allm(x, y, M) for (auto [(x), (y)] : (M)) #define alls(i, S) for (auto(&i) : (S)) #define pb push_back #define fi first #define se second #define escape(a) \ print(a); \ return; const ll INF = (1LL << 61) - 1; const ll MAX_N1 = 200010; const ll MAX_N2 = 500010; ll min(int x, ll y) { return min(ll(x), y); } ll min(ll x, int y) { return min(x, ll(y)); } ll max(int x, ll y) { return max(ll(x), y); } ll max(ll x, int y) { return max(x, ll(y)); } ld DIV(ll x, ll y) { return ld(x) / ld(y); } template <class X> void print(X x) { cout << x << endl; } template <class X> void printt(X x) { cout << x; } void print(vl x) { for (ll i : x) { cout << i << " "; } cout << endl; } template <class X> vector<X> ruiseki(vector<X> &A) { vector<X> P; P.pb(0); for (X i : A) { P.pb(P.back() + i); } return P; } template <class X> vector<X> printpart(vector<X> &A, ll x, ll y) { rep(i, x, y + 1) { cout << A[i] << " "; } print(""); } void print(vector<PP> x) { for (PP i : x) { cout << i.first << " " << i.second << endl; } cout << endl; } template <class X> int lbound(vector<X> &Y, X a) { return lower_bound(all(Y), a) - Y.begin(); } template <class X> int ubound(vector<X> &Y, X a) { return upper_bound(all(Y), a) - Y.begin(); } template <class X> X lbound2(vector<X> &Y, X a, int mode = 0) { int x = lbound(Y, a) - mode; if (x < 0 || x >= Y.size()) return INF; return Y[x]; } template <class X> X ubound2(vector<X> &Y, X a, int mode = 0) { int x = ubound(Y, a) - mode; if (x < 0 || x >= Y.size()) return INF; return Y[x]; } template <class... T> void cl(T &...t) { (..., (t.clear())); } template <class... T> void in(T &...t) { (..., (cin >> t)); } template <class... T> void put(vl &V, int n, int mode = 0) { ll k; if (mode == 0) cl(V); rep(i, n) { cin >> k; V.pb(k); } } int max_index(vl &V) { return max_element(all(V)) - V.begin(); } int min_index(vl &V) { return min_element(all(V)) - V.begin(); } ll sum(vl &V) { return accumulate(all(V), 0ll); } template <typename T> void UNIQUE(vector<T> &v) { sort(v.begin(), v.end()); v.erase(unique(v.begin(), v.end()), v.end()); } template <typename T> T ADD(T a, T b) { T res; return __builtin_add_overflow(a, b, &res) ? numeric_limits<T>::max() : res; } template <typename T> T MUL(T a, T b) { T res; return __builtin_mul_overflow(a, b, &res) ? numeric_limits<T>::max() : res; }; template <typename T> T POW(T a, int n) { T res = 1; for (; n > 0; n >>= 1, a *= a) if (n & 1) res *= a; return res; } template <class X> bool ma(X &a, X b) { if (a < b) { a = b; return true; } return false; } template <class X> bool mi(X &a, X b) { if (a > b) { a = b; return true; } return false; } void vset(vl &A, ll n, ll k) { A = vl(n, k); } ll divup(ll x, ll y) { return (x + y - 1) / y; } ll a, b, c, d, e, f, h, x, y, z, p, q, n, t, r, k, w, l, ans, m, u, v; ll codeforces = 1; // const ll mod = 1000000007; const ll mod = 998244353; vl g[MAX_N2]; vector<PP> VP, VP2; string S, T, U; vl A, B, C, D; class UnionFind { // まとめる 判定 サイズを知る public: // Aから見た親の番号を格納する。rootだったら-1*その集合のサイズ。 vector<int> Parent; // 初期化 UnionFind(ll N) { Parent = vector<int>(N, -1); } // Aのrootを調べる int root(int A) { if (Parent[A] < 0) return A; // マイナスならそれはroot return Parent[A] = root(Parent[A]); } // rootの値をプラスに戻して返す(サイズ) ll size(int A) { return -Parent[root(A)]; } // くっつける関数 bool connect(int A, int B) { // AとBのroot同士をくっつける A = root(A); // ここのAは、"rootの場所"の意味 B = root(B); if (A == B) return false; // 既にくっついている if (size(A) < size(B)) swap(A, B); // 大きい方にくっつけるために中身交換 Parent[A] += Parent[B]; // 中身更新 Parent[B] = A; return true; } }; void solve() { in(n, m); UnionFind uni(n); vector<tuple<ll, ll, ll>> VT; rep(m) { in(x, y, z); x--; y--; VT.pb({z, x, y}); } sort(all(VT)); rep(i, m) { auto [z, x, y] = VT[i]; p = uni.size(x); q = uni.size(y); if (uni.connect(x, y)) { ans += p * q * z; } } print(ans); } int main() { cout << fixed << setprecision(15); cin.tie(0); ios::sync_with_stdio(false); // cin >> codeforces; rep(i, codeforces) { ans = 0; solve(); } }