結果
問題 | No.1708 Quality of Contest |
ユーザー | platinum |
提出日時 | 2020-09-15 22:44:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 717 bytes |
コンパイル時間 | 1,479 ms |
コンパイル使用メモリ | 173,588 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-09-17 16:51:48 |
合計ジャッジ時間 | 5,546 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0; i<(int)(n); i++) using namespace std; using LL = long long; int main(){ int N, M; LL X; cin >> N >> M >> X; vector<LL> V(N), G(N); rep(i,N) cin >> V[i] >> G[i]; int K; cin >> K; vector<int> p(K); rep(i,K) cin >> p[i]; if(N >= 10){ cout << 0 << endl; return 0; } vector<int> per(N); LL ans = 0; rep(i,N) per[i] = i; do{ LL res = 0; rep(i,K){ LL kind = 0; vector<bool> solved(M); rep(j,p[i]){ int num = per[j]; res += V[num]; if(!solved[G[num]]) kind++; solved[G[num]] = true; } res += X * kind; } ans = max(ans,res); }while(next_permutation(per.begin(),per.end())); cout << ans << endl; return 0; }