結果
問題 | No.1708 Quality of Contest |
ユーザー | uytvcc |
提出日時 | 2021-10-15 22:14:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,670 bytes |
コンパイル時間 | 1,780 ms |
コンパイル使用メモリ | 178,200 KB |
実行使用メモリ | 18,256 KB |
最終ジャッジ日時 | 2024-09-17 17:35:45 |
合計ジャッジ時間 | 4,928 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 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> using namespace std; using ll = long long; using ull = unsigned long long; #define rep(i,n) for(int i=0; i<(int)(n); i++) #define MOD 1000000007 #define MOD2 998244353 #define INF 1000000007 #define LINF 1000000000000000007LL #define PI 3.14159265359 #define P pair<ll,ll> template <typename T> inline bool chmax(T &a, const T &b){ if(a<b) {a=b; return true;} else return false; } template <typename T> inline bool chmin(T &a, const T &b){ if(a>b) {a=b; return true;} else return false; } struct Edge{ int to; ll cost; Edge(int to, ll cost) : to(to), cost(cost) {} }; typedef vector<Edge> Edges; typedef vector<Edges> Graph; void add_edge(Graph &g,int from,int to,ll cost,bool rev,ll rev_cost){ g[from].push_back(Edge(to,cost)); if(rev) g[to].push_back(Edge(from,rev_cost)); } void solve(){ int n,m,x; cin>>n>>m>>x; vector<int> a(n),b(n); rep(i,n){ cin>>a[i]>>b[i]; b[i]--; } int k; cin>>k; vector<int> c(k); rep(i,k) cin>>c[i]; //---------------------------------------- vector<vector<int>> kind(m); rep(i,n){ kind[b[i]].push_back(a[i]); } vector<int> points; rep(i,m){ if(kind[i].size()){ sort(kind[i].begin(),kind[i].end(),greater<int>()); kind[i][0]+=x; } for(auto p : kind[i]) points.push_back(p); } sort(points.begin(),points.end(),greater<int>()); vector<int> solved(n+1); solved[0]=k; rep(i,k) solved[c[i]+1]--; rep(i,n) solved[i+1]+=solved[i]; ll ans=0; rep(i,n) ans += solved[i+1]*points[i]; cout<<ans<<'\n'; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cout<<setprecision(10)<<fixed; solve(); return 0; }