結果
問題 | No.2546 Many Arithmetic Sequences |
ユーザー | kmjp |
提出日時 | 2023-11-25 00:41:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,268 bytes |
コンパイル時間 | 2,982 ms |
コンパイル使用メモリ | 218,728 KB |
実行使用メモリ | 15,444 KB |
最終ジャッジ日時 | 2024-09-26 10:13:33 |
合計ジャッジ時間 | 7,242 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 61 ms
5,376 KB |
testcase_04 | AC | 110 ms
12,680 KB |
testcase_05 | AC | 88 ms
9,080 KB |
testcase_06 | AC | 20 ms
5,376 KB |
testcase_07 | AC | 45 ms
6,144 KB |
testcase_08 | AC | 12 ms
5,376 KB |
testcase_09 | AC | 43 ms
9,260 KB |
testcase_10 | AC | 77 ms
13,216 KB |
testcase_11 | AC | 84 ms
15,072 KB |
testcase_12 | AC | 36 ms
7,212 KB |
testcase_13 | AC | 68 ms
8,964 KB |
testcase_14 | AC | 75 ms
13,100 KB |
testcase_15 | AC | 23 ms
6,096 KB |
testcase_16 | AC | 68 ms
11,540 KB |
testcase_17 | AC | 103 ms
9,260 KB |
testcase_18 | AC | 53 ms
8,012 KB |
testcase_19 | AC | 62 ms
7,820 KB |
testcase_20 | AC | 38 ms
7,432 KB |
testcase_21 | AC | 46 ms
5,376 KB |
testcase_22 | AC | 74 ms
8,944 KB |
testcase_23 | AC | 140 ms
15,252 KB |
testcase_24 | AC | 138 ms
15,248 KB |
testcase_25 | AC | 140 ms
15,228 KB |
testcase_26 | AC | 143 ms
15,092 KB |
testcase_27 | AC | 140 ms
15,232 KB |
testcase_28 | AC | 125 ms
15,444 KB |
testcase_29 | AC | 129 ms
14,496 KB |
testcase_30 | AC | 124 ms
15,392 KB |
testcase_31 | AC | 127 ms
15,304 KB |
testcase_32 | AC | 124 ms
15,240 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 115 ms
15,144 KB |
testcase_35 | AC | 3 ms
6,944 KB |
testcase_36 | AC | 94 ms
14,004 KB |
testcase_37 | AC | 2 ms
6,944 KB |
testcase_38 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N,M; ll A[303030],D[303030]; int cur[303030]; template<typename V> struct ConvexHull { deque<pair<V,V>> Q; V calc(pair<V,V> p, V x) { return p.first*x+p.second; } int dodo(pair<V,V> A,pair<V,V> B, pair<V,V> C) { return ((__int128)(B.second-C.second)*(B.first-A.first)<=(__int128)(A.second-B.second)*(C.first-B.first)); } void add(V a, V b) { // add ax+b if(Q.size() && Q.back().first==a) { //aが同じ場合 if(b<=Q.back().second) return; //maxの場合 Q.pop_back(); } Q.push_back({a,b}); int v; while((v=Q.size())>=3 && dodo(Q[v-3],Q[v-2],Q[v-1])) Q[v-2]=Q[v-1], Q.pop_back(); } void add(vector<pair<V,V>> v) { sort(v.begin(),v.end()); for(auto r=v.begin();r!=v.end();r++) add(r->first,r->second); } V query(V x) { int L=-1,R=Q.size()-1; while(R-L>1) { int M=(L+R)/2; (0^((calc(Q[M],x)<=calc(Q[M+1],x)))?L:R)=M; } return calc(Q[R],x); } }; ConvexHull<ll> ch; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>M; vector<pair<ll,ll>> C; C.push_back({-(3LL<<30),-(1LL<<60)}); priority_queue<pair<ll,int>> Q; FOR(i,N) { cin>>A[i]>>D[i]; if(D[i]>=0) { C.push_back({D[i],2*A[i]-D[i]}); } else { Q.push({A[i],i}); } } ch.add(C); A[N]=-1LL<<42; Q.push({A[N],N}); ll ret=M*ch.query(M)/2; ll sum=0; for(i=M-1;i>=0;i--) { auto p=Q.top(); Q.pop(); sum+=p.first; x=p.second; A[x]+=D[x]; Q.push({A[x],x}); ret=max(ret,sum+i*ch.query(i)/2); } cout<<ret<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }