結果
問題 | No.1248 Kth Sum |
ユーザー | Quiet_Space_time |
提出日時 | 2023-01-05 12:24:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,041 bytes |
コンパイル時間 | 1,013 ms |
コンパイル使用メモリ | 85,904 KB |
実行使用メモリ | 11,560 KB |
最終ジャッジ日時 | 2024-05-06 17:29:45 |
合計ジャッジ時間 | 3,772 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 3 ms
6,944 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | AC | 19 ms
7,808 KB |
testcase_15 | WA | - |
testcase_16 | AC | 30 ms
8,520 KB |
testcase_17 | AC | 21 ms
7,936 KB |
testcase_18 | AC | 21 ms
7,832 KB |
testcase_19 | AC | 19 ms
8,576 KB |
testcase_20 | AC | 19 ms
8,708 KB |
testcase_21 | AC | 18 ms
8,576 KB |
testcase_22 | AC | 18 ms
7,804 KB |
testcase_23 | RE | - |
testcase_24 | AC | 60 ms
10,588 KB |
testcase_25 | AC | 81 ms
11,560 KB |
testcase_26 | WA | - |
testcase_27 | AC | 13 ms
6,940 KB |
testcase_28 | AC | 12 ms
6,944 KB |
testcase_29 | RE | - |
testcase_30 | AC | 29 ms
8,864 KB |
testcase_31 | AC | 18 ms
7,992 KB |
testcase_32 | AC | 17 ms
7,948 KB |
testcase_33 | AC | 2 ms
6,944 KB |
testcase_34 | AC | 42 ms
8,352 KB |
testcase_35 | AC | 25 ms
7,940 KB |
testcase_36 | AC | 22 ms
8,452 KB |
testcase_37 | AC | 19 ms
7,804 KB |
ソースコード
#include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <queue> using namespace std; #define fi first #define sc second #define mkp make_pair #define pii pair<int,int> typedef long long ll; const int N=2e5+5,oo=1e9,mod=998244353,G=3,invG=(mod+1)/G; inline int read() { int x=0,flag=0;char ch=getchar(); while(ch<'0'||ch>'9') {flag|=(ch=='-');ch=getchar();} while('0'<=ch&&ch<='9') {x=(x<<3)+(x<<1)+ch-'0';ch=getchar();} return flag?-x:x; } inline int mx(int x,int y) {return x>y?x:y;} inline int mn(int x,int y) {return x<y?x:y;} inline void swp(int &x,int &y) {x^=y^=x^=y;} inline int as(int x) {return x>0?x:-x;} int n,k,a[N],fr[N],L[N],minn[N]; priority_queue<pii> Q1; priority_queue<int> Q3,Q4; priority_queue< pii,vector<pii>,greater<pii> > Q2; int main() { n=read();k=read(); for(int i=1;i<=n;++i) a[i]=read(); for(int i=1;i<=n;++i) { fr[i]=(i-2)/(k-1)+1; if(!L[fr[i]]) L[fr[i]]=i; } minn[n]=a[n]; for(int i=n-1;i>=1;--i) minn[i]=mn(minn[i+1],a[i]); ll ans=a[k],sum=0; for(int i=n,pos;i>k;--i) { if(Q1.size()==fr[i]-1) { pos=fr[i]*k; if(Q3.top()>=pos) ans=min(ans,a[i]+sum); else ans=min(ans,a[i]+sum-Q1.top().fi+minn[pos]); } Q2.push(mkp(a[i],i)); while(!Q2.empty()&&Q1.size()<fr[i-1]-1) { Q1.push(Q2.top()),sum+=Q2.top().fi; Q3.push(Q2.top().sc); Q2.pop(); } while(!Q1.empty()&&Q1.size()>fr[i-1]-1) { Q2.push(Q1.top()),sum-=Q1.top().fi; Q4.push(Q1.top().sc); Q1.pop(); } while(!Q1.empty()&&!Q2.empty()&&Q1.top()>Q2.top()) { sum=sum-Q1.top().fi+Q2.top().fi; Q3.push(Q2.top().sc);Q4.push(Q1.top().sc); pii tmp=Q1.top();Q1.pop(); Q1.push(Q2.top());Q2.pop(); Q2.push(tmp); } while(!Q3.empty()&&!Q4.empty()&&Q3.top()==Q4.top()) Q3.pop(),Q4.pop(); } printf("%lld\n",ans); return 0; }