結果
問題 |
No.1297 銅像
|
ユーザー |
![]() |
提出日時 | 2020-11-20 23:12:02 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 911 bytes |
コンパイル時間 | 3,051 ms |
コンパイル使用メモリ | 220,092 KB |
最終ジャッジ日時 | 2025-01-16 03:12:47 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 TLE * 14 |
ソースコード
#pragma GCC optimize ("O3") #pragma GCC target ("avx2") // or sse4 #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} //INSERT ABOVE HERE using ull = long long; const int MAX = 1e5+10; ull as[MAX]; ull bs[MAX]; const ull INF = 4e18; ull dp[MAX]; signed main(){ cin.tie(0); ios::sync_with_stdio(0); ull n,c; cin>>n>>c; for(int i=0;i<n;i++) cin>>as[i]>>bs[i]; fill(dp,dp+MAX,INF); dp[0]=0; for(ull i=0;i<n;i++){ ull a=as[i]; ull cur=INF; for(ull p=0;p<=i;p++) chmin(cur,dp[p]-a*p+(p-1-i)*p*c); cur+=i*i*c; cur+=as[i]+bs[i]; // [-, j] for(ull j=i;j<min(n,i+int(1e4));j++) chmin(dp[j+1],cur+a*j+(-j*i)*c); } cout<<dp[n]+(n*(n-1)/2)*c<<endl; return 0; }