結果
問題 | No.1708 Quality of Contest |
ユーザー | forest3 |
提出日時 | 2021-11-12 16:55:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,019 bytes |
コンパイル時間 | 1,731 ms |
コンパイル使用メモリ | 183,528 KB |
実行使用メモリ | 16,640 KB |
最終ジャッジ日時 | 2024-05-03 23:26:30 |
合計ジャッジ時間 | 7,799 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,760 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 293 ms
16,640 KB |
testcase_10 | TLE | - |
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 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N, M; long long X; cin >> N >> M >> X; typedef pair<int, int> P; vector<P> ab( N ); for( int i = 0; i < N; i++ ) { int A, B; cin >> A >> B; ab[i] = P( A, B ); } sort( ab.begin(), ab.end(), greater<P>() ); set<int> st; for( int i = 0; i < N; i++ ) { if( i == 0 ) st.insert( ab[i].second ); else if( (int)st.size() < M ) { for( int j = i + 1; j < N; j++ ) { if( st.count( ab[j].second ) == 0 ) { if( ab[i].first + X * st.size() < ab[j].first + X * (st.size() + 1) ) { st.insert( ab[j].second ); swap( ab[i], ab[j] ); i = j; break; } } } } } vector<long long> acc( N + 1 ); vector<int> b( N + 1 ); st.clear(); for( int i = 0; i < N; i++ ) { acc[i + 1] = acc[i] + ab[i].first; st.insert( ab[i].second ); b[i + 1] = st.size(); } long long ans = 0; int K; cin >> K; for( int i = 0; i < K; i++ ) { int C; cin >> C; ans += acc[C] + X * b[C]; } cout << ans << endl; }