結果
問題 | No.2852 Yakitori Optimization Problem |
ユーザー | HIcoder |
提出日時 | 2024-08-25 22:05:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 294 ms / 2,000 ms |
コード長 | 983 bytes |
コンパイル時間 | 1,334 ms |
コンパイル使用メモリ | 123,624 KB |
実行使用メモリ | 10,272 KB |
最終ジャッジ日時 | 2024-08-25 22:05:22 |
合計ジャッジ時間 | 6,412 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
6,812 KB |
testcase_01 | AC | 178 ms
8,800 KB |
testcase_02 | AC | 184 ms
7,224 KB |
testcase_03 | AC | 261 ms
10,036 KB |
testcase_04 | AC | 206 ms
9,124 KB |
testcase_05 | AC | 73 ms
6,940 KB |
testcase_06 | AC | 26 ms
6,944 KB |
testcase_07 | AC | 205 ms
9,088 KB |
testcase_08 | AC | 19 ms
6,944 KB |
testcase_09 | AC | 263 ms
9,976 KB |
testcase_10 | AC | 259 ms
10,268 KB |
testcase_11 | AC | 248 ms
10,148 KB |
testcase_12 | AC | 262 ms
10,272 KB |
testcase_13 | AC | 244 ms
10,144 KB |
testcase_14 | AC | 294 ms
10,268 KB |
testcase_15 | AC | 269 ms
10,140 KB |
testcase_16 | AC | 244 ms
10,144 KB |
ソースコード
#include<iostream> #include<string> #include<queue> #include<vector> #include<cassert> #include<random> #include<set> #include<map> #include<cassert> #include<unordered_map> #include<bitset> #include<numeric> #include<algorithm> using namespace std; typedef long long ll; const int inf=1<<30; const ll INF=1LL<<62; typedef pair<int,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; const int MAXN=100000; int main(){ int N,K; cin>>N>>K; vector<ll> A(N),B(N),C(N); ll tot=0; for(int i=0;i<N;i++){ cin>>A[i]; tot+=A[i]; } priority_queue<ll> pq; for(int i=0;i<N;i++){ cin>>B[i]; tot+=B[i];//全部塩と仮定 } for(int i=0;i<N;i++){ cin>>C[i]; } for(int i=0;i<N;i++){ ll dif=C[i]-B[i]; pq.push(dif); } ll ans=tot; int cK=K,cT=N-K; while(!pq.empty() && cT>0){ ll v =pq.top();pq.pop(); ans+=v; cT--; } cout<<ans<<endl; }