結果
問題 | No.19 ステージの選択 |
ユーザー | i_mrhj |
提出日時 | 2020-01-17 15:32:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,406 bytes |
コンパイル時間 | 997 ms |
コンパイル使用メモリ | 94,596 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 15:52:07 |
合計ジャッジ時間 | 1,874 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
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 | - |
ソースコード
#include <cstdio> #include <climits> #include <cmath> #include <iostream> #include <iomanip> #include <string> #include <cstdio> #include <climits> #include <iostream> #include <algorithm> #include <string> #include <vector> #include <utility> #include <queue> #include <cstring> #include <set> #define rep(i, n) for (int i = 0; i < int(n); i++) using namespace std; long long MOD = 1000000007; long long INF = 1000000000000000; //10^15 typedef long long ll; typedef unsigned long long ull; ll powMod(ll x, ll n) { if (n == 0) return 1; ll r = powMod(x, n / 2); if (n % 2 == 0) return (r * r) % MOD; return (r * r % MOD) * x % MOD; } int n, s; double l[110]; vector<int> g[110]; bool visited[110], minflag; double sum, Min; void dfs(int i, double mi, int start) { visited[i] = true; sum += l[i]; rep(j, g[i].size()) { if (g[i][j] == start) { minflag = true; Min = mi; } if (!visited[g[i][j]]) { dfs(g[i][j], min(mi, l[g[i][j]]), start); } } } int main(void) { cin >> n; rep(i, n) { cin >> l[i] >> s; s--; g[s].push_back(i); } double ans = 0.0; rep(i, n) { minflag = false; sum = 0; if (!visited[i]) { dfs(i, l[i], i); if (minflag) ans += sum / 2 + Min / 2; else ans += sum / 2 + l[i] / 2; } } cout << std::fixed; cout << std::setprecision(1) << ans << endl; return 0; }