結果
問題 | No.2523 Trick Flower |
ユーザー | MasKoaTS |
提出日時 | 2023-03-31 19:52:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,051 ms / 4,000 ms |
コード長 | 2,140 bytes |
コンパイル時間 | 3,210 ms |
コンパイル使用メモリ | 227,884 KB |
実行使用メモリ | 40,036 KB |
最終ジャッジ日時 | 2024-09-25 05:54:57 |
合計ジャッジ時間 | 9,819 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 1,051 ms
40,036 KB |
testcase_16 | AC | 978 ms
39,584 KB |
testcase_17 | AC | 150 ms
21,588 KB |
testcase_18 | AC | 125 ms
17,728 KB |
testcase_19 | AC | 253 ms
25,000 KB |
testcase_20 | AC | 372 ms
24,944 KB |
testcase_21 | AC | 375 ms
24,908 KB |
testcase_22 | AC | 259 ms
24,796 KB |
testcase_23 | AC | 263 ms
24,856 KB |
testcase_24 | AC | 121 ms
15,532 KB |
testcase_25 | AC | 110 ms
20,228 KB |
testcase_26 | AC | 254 ms
20,972 KB |
testcase_27 | AC | 131 ms
23,928 KB |
testcase_28 | AC | 203 ms
19,684 KB |
testcase_29 | AC | 24 ms
6,944 KB |
testcase_30 | AC | 131 ms
17,704 KB |
testcase_31 | AC | 11 ms
6,940 KB |
testcase_32 | AC | 55 ms
11,704 KB |
testcase_33 | AC | 187 ms
24,560 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/scc> #define all(x) x.begin(), x.end() using namespace std; using namespace atcoder; using ll = long long; vector<vector<int> > convert_SCC_to_DAG(int n, vector<ll>& a, vector<ll>& b, vector<vector<int> >& route, vector<vector<int> >& scc) { int sz = scc.size(); vector<ll> p(sz), q(sz); vector<vector<int> > dag(sz, vector<int>({})); vector<int> group(n); for (int i = 0; i < sz; i++) { for (int x : scc[i]) { group[x] = i; p[i] += a[x]; q[i] += b[x]; } } a = p; b = q; for (int i = 0; i < n; i++) { for (int x : route[i]) { int a = group[i]; int b = group[x]; if (a != b) { dag[a].push_back(b); } } } for (vector<int>& v : dag) { sort(all(v)); v.erase(unique(all(v)), v.end()); } return dag; } ll get_dp(ll mid, int n, vector<ll>& a, vector<ll>& b, vector<vector<int> >& dag, unordered_set<int>& visited, int x) { visited.insert(x); ll ret = a[x] - b[x] * mid; for (int k : dag[x]) { ret += get_dp(mid, n, a, b, dag, visited, k); } return min(ret, 0ll); } bool check(ll mid, int n, vector<ll>& a, vector<ll>& b, vector<vector<int> >& dag) { unordered_set<int> visited = {}; for (int i = 0; i < n; i++) { if (visited.find(i) != visited.end() or get_dp(mid, n, a, b, dag, visited, i) >= 0) { continue; } return false; } return true; } int main(void) { int n; cin >> n; vector<ll> a(n), b(n); vector<int> c(n); ll sa = 0, sb = 0; for (int i = 0; i < n; i++) { cin >> a[i]; sa += a[i]; } for (int i = 0; i < n; i++) { cin >> b[i]; sb += b[i]; } for (int i = 0; i < n; i++) { cin >> c[i]; c[i]--; } vector<vector<int> > route(n, vector<int>({})); scc_graph g(n); for (int i = 0; i < n; i++) { if (i == c[i]) { continue; } route[c[i]].push_back(i); g.add_edge(c[i], i); } vector<vector<int> > scc = g.scc(); vector<vector<int> > dag = convert_SCC_to_DAG(n, a, b, route, scc); n = scc.size(); ll ok = 0; ll ng = sa / sb + 1; while (ng - ok > 1) { ll mid = (ok + ng) >> 1ll; if (check(mid, n, a, b, dag)) { ok = mid; } else { ng = mid; } } cout << ok << endl; return 0; }