結果
問題 | No.19 ステージの選択 |
ユーザー | 0w1 |
提出日時 | 2017-01-02 15:07:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,275 bytes |
コンパイル時間 | 1,502 ms |
コンパイル使用メモリ | 170,492 KB |
実行使用メモリ | 10,012 KB |
最終ジャッジ日時 | 2024-05-09 13:35:51 |
合計ジャッジ時間 | 7,995 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector< int > vi; typedef vector< vi > vvi; typedef vector< ll > vl; typedef vector< vl > vvl; typedef pair< int, int > pii; typedef vector< pii > vp; typedef vector< double > vd; typedef vector< vd > vvd; typedef vector< string > vs; template< class T1, class T2 > int upmin( T1 &x, T2 v ){ if( x > v ){ x = v; return 1; } return 0; } template< class T1, class T2 > int upmax( T1 &x, T2 v ){ if( x < v ){ x = v; return 1; } return 0; } const int INF = 0x3f3f3f3f; int N; vi L, S; void init(){ cin >> N; L = S = vi( N ); for( int i = 0; i < N; ++i ){ cin >> L[ i ] >> S[ i ]; --S[ i ]; } } double ans; void preprocess(){ for( int i = 0; i < N; ++i ){ ans += 1.0 * L[ i ] / 2; } vi vis( N ); for( int i = 0; i < N; ++i ){ if( vis[ i ] ) continue; int u; for( u = i; not vis[ u ]; u = S[ u ] ){ vis[ u ] = 1; } int minv = L[ u ]; for( int v = S[ u ]; v != u; v = S[ v ] ){ upmin( minv, L[ v ] ); } ans += 1.0 * minv / 2; } } void solve(){ cout << fixed << setprecision( 1 ) << ans << endl; } signed main(){ ios::sync_with_stdio( 0 ); init(); preprocess(); solve(); return 0; }