結果
問題 | No.1297 銅像 |
ユーザー | beet |
提出日時 | 2020-11-20 22:35:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 966 bytes |
コンパイル時間 | 3,232 ms |
コンパイル使用メモリ | 222,152 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 13:26:37 |
合計ジャッジ時間 | 6,451 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 9 ms
5,376 KB |
testcase_08 | AC | 10 ms
5,376 KB |
testcase_09 | AC | 161 ms
6,784 KB |
testcase_10 | AC | 152 ms
6,528 KB |
testcase_11 | WA | - |
testcase_12 | AC | 155 ms
6,944 KB |
testcase_13 | AC | 159 ms
6,940 KB |
testcase_14 | AC | 151 ms
6,940 KB |
testcase_15 | AC | 149 ms
6,940 KB |
testcase_16 | AC | 153 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 160 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 150 ms
6,944 KB |
ソースコード
#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]; ull vs[MAX]={}; const int BS = 1000; signed main(){ cin.tie(0); ios::sync_with_stdio(0); int n,c; cin>>n>>c; for(int i=0;i<n;i++) cin>>as[i]>>bs[i]; fill(dp,dp+MAX,INF); for(int i=1;i<=n;i++) vs[i]=vs[i-1]+i*c; dp[0]=0; for(int i=0;i<n;i++){ ull a=as[i]; ull cur=dp[i]-a*i; for(int p=max(0,i-BS);p<i;p++) chmin(cur,dp[p]-a*p+vs[i-p]); cur+=as[i]+bs[i]; // [-, j] for(int j=i;j<min(n,i+BS);j++) chmin(dp[j+1],cur+a*j+vs[j-i]); } cout<<dp[n]<<endl; return 0; }