結果
問題 | No.2028 Even Choice |
ユーザー | otoshigo |
提出日時 | 2024-03-30 01:58:47 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 508 bytes |
コンパイル時間 | 2,396 ms |
コンパイル使用メモリ | 205,788 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-30 17:23:35 |
合計ジャッジ時間 | 6,310 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 RE * 5 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,K; cin>>N>>K; vector<ll>A(N); for(int i=0;i<N;i++)cin>>A[i]; priority_queue<ll,vector<ll>,greater<ll>>pq; ll sum=0,ans=0; for(int i=N-1;i>=0;i--){ if(pq.size()<K-1){ pq.push(A[i]); sum+=A[i]; } else{ if(i%2==1)ans=max(ans,A[i]+sum); if(pq.top()<A[i]){ sum-=pq.top(); pq.pop(); sum+=A[i]; pq.push(A[i]); } } } cout<<ans<<"\n"; }