結果
問題 | No.2523 Trick Flower |
ユーザー | milanis48663220 |
提出日時 | 2023-10-28 00:18:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 4,645 bytes |
コンパイル時間 | 1,417 ms |
コンパイル使用メモリ | 132,064 KB |
実行使用メモリ | 34,536 KB |
最終ジャッジ日時 | 2024-09-25 15:44:26 |
合計ジャッジ時間 | 9,228 ms |
ジャッジサーバーID (参考情報) |
judge5 / 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 | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } class Scc{ public: int N; vector<vector<int>> G; vector<vector<int>> G_inv; vector<int> idx; Scc(int n){ N = n; G = vector<vector<int>>(n, vector<int>()); G_inv = vector<vector<int>>(n, vector<int>()); used = vector<bool>(n, false); idx = vector<int>(n); } void add_edge(int from, int to){ G[from].push_back(to); G_inv[to].push_back(from); } vector<vector<int>> scc(){ vector<vector<int>> ans; for(int i = 0; i < N; i++){ if(!used[i]) dfs1(i); } clear(); int cur = 0; for(int i = vs.size()-1; i >= 0; i--){ if(!used[vs[i]]) { dfs2(vs[i], cur); cur++; ans.push_back(buf); buf.clear(); } } return ans; } private: vector<bool> used; vector<int> vs; vector<int> buf; void clear(){ for(int i = 0; i < N; i++) used[i] = false; } void dfs1(int v){ used[v] = true; for(int i = 0; i < G[v].size(); i++){ if(!used[G[v][i]]) dfs1(G[v][i]); } vs.push_back(v); } void dfs2(int v, int k){ used[v] = true; idx[v] = k; for(int i = 0; i < G_inv[v].size(); i++){ if(!used[G_inv[v][i]]) dfs2(G_inv[v][i], k); } buf.push_back(v); } }; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; cin >> n; vector<ll> a(n), b(n); for(int i = 0; i < n; i++) cin >> a[i]; for(int i = 0; i < n; i++) cin >> b[i]; Scc scc(n); vector<int> c(n); for(int i = 0; i < n; i++){ int c; cin >> c; c--; scc.add_edge(c, i); } auto components = scc.scc(); int m = components.size(); vector<ll> aa(m), bb(m); for(int i = 0; i < m; i++){ for(int v: components[i]){ aa[i] += a[v]; bb[i] += b[v]; } } vector<vector<int>> g(m); vector<vector<int>> g_inv(m); for(int i = 0; i < n; i++){ if(scc.idx[i] != scc.idx[c[i]]){ assert(scc.idx[c[i]] < scc.idx[i]); g[scc.idx[c[i]]].push_back(scc.idx[i]); g_inv[scc.idx[i]].push_back(scc.idx[c[i]]); // cout << scc.idx[c[i]] << "->" << scc.idx[i] << endl; } } ll a_sum = accumulate(a.begin(), a.end(), 0ll); ll b_sum = accumulate(b.begin(), b.end(), 0ll); auto ok = [&](ll x){ if(x > a_sum/b_sum) return false; vector<ll> req(m); for(int i = 0; i < m; i++) req[i] = bb[i]*x; // cout << "=====" << endl; // cout << x << endl; // print_vector(aa); // print_vector(req); for(int i = m-1; i >= 0; i--){ if(req[i] <= aa[i]){ }else{ // 不足している if(g_inv[i].empty()) return false; int par = g_inv[i][0]; req[par] += req[i]-aa[i]; } } return true; }; ll l = 0, r = a_sum/b_sum+1; while(r-l > 1){ ll x = (l+r)/2; if(ok(x)) l = x; else r = x; } cout << l << endl; }