結果
問題 | No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい |
ユーザー | 0w1 |
提出日時 | 2016-12-16 01:23:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,033 bytes |
コンパイル時間 | 1,846 ms |
コンパイル使用メモリ | 191,540 KB |
実行使用メモリ | 10,544 KB |
最終ジャッジ日時 | 2024-05-07 15:42:34 |
合計ジャッジ時間 | 6,989 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 38 ms
8,832 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 102 ms
10,544 KB |
testcase_07 | AC | 42 ms
8,960 KB |
testcase_08 | AC | 43 ms
9,984 KB |
testcase_09 | AC | 57 ms
9,216 KB |
testcase_10 | AC | 62 ms
9,216 KB |
testcase_11 | AC | 77 ms
9,344 KB |
testcase_12 | WA | - |
testcase_13 | AC | 36 ms
9,216 KB |
testcase_14 | WA | - |
testcase_15 | AC | 29 ms
8,948 KB |
testcase_16 | AC | 86 ms
9,200 KB |
testcase_17 | AC | 85 ms
9,428 KB |
testcase_18 | AC | 88 ms
9,424 KB |
testcase_19 | AC | 36 ms
9,328 KB |
testcase_20 | WA | - |
testcase_21 | AC | 41 ms
9,228 KB |
testcase_22 | AC | 74 ms
9,216 KB |
testcase_23 | AC | 55 ms
9,216 KB |
testcase_24 | AC | 37 ms
8,960 KB |
testcase_25 | AC | 66 ms
9,140 KB |
testcase_26 | AC | 47 ms
8,960 KB |
testcase_27 | AC | 68 ms
9,088 KB |
testcase_28 | AC | 34 ms
9,088 KB |
testcase_29 | AC | 78 ms
9,216 KB |
testcase_30 | AC | 4 ms
6,784 KB |
testcase_31 | AC | 4 ms
6,656 KB |
testcase_32 | WA | - |
testcase_33 | AC | 93 ms
9,344 KB |
testcase_34 | AC | 48 ms
9,472 KB |
testcase_35 | AC | 5 ms
6,784 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 3 ms
6,784 KB |
testcase_39 | AC | 4 ms
6,912 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 8 ms
7,004 KB |
testcase_43 | AC | 7 ms
7,040 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
ソースコード
#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, K; vi S, P, U; void init(){ cin >> N >> K; S = P = U = vi( N ); for( int i = 0; i < N; ++i ) cin >> S[ i ] >> P[ i ] >> U[ i ]; } vi ans; void preprocess(){ vvi s2id( 10 + 1 ); for( int i = 0; i < N; ++i ) s2id[ S[ i ] ].emplace_back( i ); for( int i = 10; i >= 0; --i ){ if( ans.size() + s2id[ i ].size() <= K ){ for( int j = 0; j < s2id[ i ].size(); ++j ) ans.emplace_back( s2id[ i ][ j ] ); } else{ vi ucnt( ( int ) 1e5 + 1 ); for( int j = 0; j < ans.size(); ++j ) ++ucnt[ U[ ans[ j ] ] ]; vector< priority_queue< tuple< int, int > > > pq( ( int ) 1e5 + 1 ); for( int j = 0; j < N; ++j ) if( S[ j ] == i ) pq[ U[ j ] ].emplace( -P[ j ], j ); priority_queue< tuple< int, int, int > > upq; for( int j = 0; j <= ( int ) 1e5; ++j ) if( not pq[ j ].empty() ) upq.emplace( -ucnt[ j ], get< 0 >( pq[ j ].top() ), j ); while( not upq.empty() and ans.size() < K ){ int uc, p, u; tie( uc, p, u ) = upq.top(); upq.pop(); int x, id; tie( x, id ) = pq[ u ].top(); pq[ u ].pop(); ans.emplace_back( id ); if( not pq[ u ].empty() ) upq.emplace( uc - 1, get< 0 >( pq[ u ].top() ), u ); } break; } } } void solve(){ for( int i = 0; i < K; ++i ) cout << ans[ i ] << endl; } signed main(){ ios::sync_with_stdio( 0 ); init(); preprocess(); solve(); return 0; }