結果
問題 | No.2642 Don't cut line! |
ユーザー | KumaTachiRen |
提出日時 | 2024-02-19 23:46:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 235 ms / 4,000 ms |
コード長 | 2,504 bytes |
コンパイル時間 | 4,033 ms |
コンパイル使用メモリ | 275,980 KB |
実行使用メモリ | 74,184 KB |
最終ジャッジ日時 | 2024-09-29 03:40:11 |
合計ジャッジ時間 | 10,049 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 204 ms
74,156 KB |
testcase_02 | AC | 204 ms
74,184 KB |
testcase_03 | AC | 202 ms
74,088 KB |
testcase_04 | AC | 201 ms
74,108 KB |
testcase_05 | AC | 201 ms
74,004 KB |
testcase_06 | AC | 132 ms
70,740 KB |
testcase_07 | AC | 135 ms
72,256 KB |
testcase_08 | AC | 133 ms
70,968 KB |
testcase_09 | AC | 131 ms
71,380 KB |
testcase_10 | AC | 140 ms
72,180 KB |
testcase_11 | AC | 130 ms
71,172 KB |
testcase_12 | AC | 138 ms
73,472 KB |
testcase_13 | AC | 130 ms
71,016 KB |
testcase_14 | AC | 131 ms
71,756 KB |
testcase_15 | AC | 136 ms
73,524 KB |
testcase_16 | AC | 46 ms
6,816 KB |
testcase_17 | AC | 168 ms
64,568 KB |
testcase_18 | AC | 185 ms
69,784 KB |
testcase_19 | AC | 133 ms
52,472 KB |
testcase_20 | AC | 120 ms
53,356 KB |
testcase_21 | AC | 36 ms
6,816 KB |
testcase_22 | AC | 34 ms
6,820 KB |
testcase_23 | AC | 235 ms
73,088 KB |
testcase_24 | AC | 113 ms
40,660 KB |
testcase_25 | AC | 127 ms
45,372 KB |
testcase_26 | AC | 138 ms
63,512 KB |
testcase_27 | AC | 148 ms
48,784 KB |
testcase_28 | AC | 203 ms
67,648 KB |
testcase_29 | AC | 141 ms
58,096 KB |
testcase_30 | AC | 131 ms
49,388 KB |
testcase_31 | AC | 165 ms
57,920 KB |
testcase_32 | AC | 131 ms
52,164 KB |
testcase_33 | AC | 2 ms
6,816 KB |
testcase_34 | AC | 2 ms
6,820 KB |
testcase_35 | AC | 1 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; struct Fast { Fast() { std::cin.tie(nullptr); ios::sync_with_stdio(false); cout << setprecision(10); } } fast; #define all(a) (a).begin(), (a).end() #define contains(a, x) ((a).find(x) != (a).end()) #define rep(i, a, b) for (int i = (a); i < (int)(b); i++) #define rrep(i, a, b) for (int i = (int)(b)-1; i >= (a); i--) #define YN(b) cout << ((b) ? "YES" : "NO") << "\n"; #define Yn(b) cout << ((b) ? "Yes" : "No") << "\n"; #define yn(b) cout << ((b) ? "yes" : "no") << "\n"; template <typename T> ostream &operator<<(ostream &os, vector<T> &vec) { for (int i = 0; i < vec.size(); i++) { os << vec[i] << (i + 1 == vec.size() ? "" : " "); } return os; } template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } using ll = long long; using vb = vector<bool>; using vvb = vector<vb>; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; using mint = modint998244353; using vm = vector<mint>; using vvm = vector<vm>; inline ostream &operator<<(ostream &os, const mint x) { return os << x.val(); }; void solve() { int n, k; ll c; cin >> n >> k >> c; vi u(k), v(k), w(k), p(k), idx(k); rep(i, 0, k) { cin >> u[i] >> v[i] >> w[i] >> p[i]; u[i]--; v[i]--; idx[i] = i; } sort(all(idx), [&w](auto const &lhs, auto const &rhs) { return w[lhs] < w[rhs]; }); ll cost = 0; { dsu uf(n); for (auto i : idx) if (!uf.same(u[i], v[i])) { uf.merge(u[i], v[i]); cost += w[i]; } if (uf.size(0) != n || cost > c) { cout << -1 << "\n"; return; } } vi l(k, -1), r(k, k); vector<stack<int>> st(k); rep(loop, 0, 18) { rep(i, 0, k) { if (r[i] - l[i] > 1) { int x = l[i] + (r[i] - l[i]) / 2; st[x].push(i); } } dsu uf(n); rep(t, 0, k) { int x = idx[t]; uf.merge(u[x], v[x]); while (!st[t].empty()) { int i = st[t].top(); st[t].pop(); if (uf.same(u[i], v[i])) r[i] = t; else l[i] = t; } } } int ans = 0; rep(i, 0, k) if (cost - w[idx[r[i]]] + w[i] <= c) chmax(ans, p[i]); cout << ans << "\n"; } int main() { int t = 1; // cin >> t; while (t--) solve(); }