結果
問題 | No.1365 [Cherry 1st Tune] Whose Fault? |
ユーザー | milanis48663220 |
提出日時 | 2021-01-23 00:48:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,647 bytes |
コンパイル時間 | 1,272 ms |
コンパイル使用メモリ | 102,992 KB |
実行使用メモリ | 8,960 KB |
最終ジャッジ日時 | 2024-06-09 07:28:01 |
合計ジャッジ時間 | 12,063 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 372 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #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; struct UnionFind { vector<int> data; UnionFind(int size) : data(size, -1) {} bool unionSet(int x, int y) { x = root(x); y = root(y); if (x != y) { if (data[y] < data[x]) swap(x, y); data[x] += data[y]; data[y] = x; } return x != y; } bool findSet(int x, int y) { return root(x) == root(y); } int root(int x) { return data[x] < 0 ? x : data[x] = root(data[x]); } int size(int x) { return -data[root(x)]; } }; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(12) << fixed; int n; cin >> n; vector<int> a(n), b(n), p(n); for(int i = 0; i < n; i++) cin >> a[i]; for(int i = 0; i < n; i++) cin >> b[i]; for(int i = 0; i < n; i++) cin >> p[i]; UnionFind uf(n); vector<long double> sum_ratio(n), sum_val(n); vector<ll> sum_ene(n); long double ans = 0.0; const long double inf = 1e9; for(int i = 0; i < n; i++){ sum_ratio[i] = p[i] == 0 ? inf : (long double)1.0/(long double)p[i]; // sum_ratio[i] = (long double)1.0/(long double)p[i]; sum_ene[i] = (a[i]-b[i]); sum_val[i] = p[i] == 0 ? 0 : p[i]*(a[i]-b[i])*(a[i]-b[i]); ans += sum_val[i]; } int q; cin >> q; for(int i = 0; i < q; i++){ int x, y; cin >> x >> y; x--; y--; if(!uf.findSet(x, y)){ int xr = uf.root(x), yr = uf.root(y); long double sr = sum_ratio[xr]+sum_ratio[yr]; int se = sum_ene[xr]+sum_ene[yr]; long double sv = (long double)(se*se)/sr; if(2*sr > inf) { cout << 'H' << endl; sv = 0.0; } ans += sv-sum_val[xr]-sum_val[yr]; uf.unionSet(x, y); int r = uf.root(x); sum_ene[r] = se; sum_val[r] = sv; sum_ratio[r] = sr; // if(2*sr > inf && uf.size(r) == n) ans = 0.0; // cout << se << ' ' << sr << ' ' << sv << endl; } cout << ans << endl; } }