結果
問題 | No.2566 美しい整数列 |
ユーザー | ragna |
提出日時 | 2023-09-27 23:54:00 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 338 ms / 2,000 ms |
コード長 | 1,021 bytes |
コンパイル時間 | 1,735 ms |
コンパイル使用メモリ | 177,304 KB |
実行使用メモリ | 20,352 KB |
最終ジャッジ日時 | 2024-07-20 18:16:31 |
合計ジャッジ時間 | 10,071 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_04 | AC | 322 ms
20,352 KB |
testcase_05 | AC | 338 ms
20,352 KB |
testcase_06 | AC | 209 ms
7,936 KB |
testcase_07 | AC | 217 ms
8,064 KB |
testcase_08 | AC | 214 ms
7,936 KB |
testcase_09 | AC | 216 ms
7,936 KB |
testcase_10 | AC | 215 ms
7,936 KB |
testcase_11 | AC | 241 ms
11,008 KB |
testcase_12 | AC | 244 ms
11,008 KB |
testcase_13 | AC | 240 ms
11,008 KB |
testcase_14 | AC | 240 ms
11,008 KB |
testcase_15 | AC | 241 ms
11,008 KB |
testcase_16 | AC | 274 ms
19,456 KB |
testcase_17 | AC | 291 ms
19,840 KB |
testcase_18 | AC | 301 ms
19,968 KB |
testcase_19 | AC | 196 ms
14,336 KB |
testcase_20 | AC | 266 ms
18,816 KB |
testcase_21 | AC | 284 ms
19,072 KB |
testcase_22 | AC | 182 ms
13,312 KB |
testcase_23 | AC | 225 ms
17,152 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:31:16: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 31 | for(auto&& [k,l]:mp){ | ^
ソースコード
#include<bits/stdc++.h>using namespace std;typedef long long ll;#define rep(i,a,b) for(ll i=(ll)(a);i<(ll)(b);i++)#define rrep(i,a,b) for(ll i=(ll)(a-1);i>=(ll)(b);i--)#define MOD 998244353//#define MOD 1000000007#define INF 1e18#define Pair pair<ll,ll>//#define PI numbers::pi//#define E numbers::etemplate <typename T> bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}template <typename T> bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}ll dx[8]={-2,-1,1,2,-2,-1,1,2};ll dy[8]={-1,-2,-2,-1,1,2,2,1};int main(){ll n,m; cin >> n >> m;vector<ll> a(n),b(m),c(n);rep(i,0,n) cin >> a[i];rep(i,0,m) cin >> b[i];rep(i,0,n) cin >> c[i];map<ll,ll> mp;ll d=0,sum=0;rep(i,0,n) sum+=c[i];rep(i,1,n){d+=b[(i-1)%m];mp[a[i]-d]+=c[i];}ll ans=INF;for(auto&& [k,l]:mp){if(a[0]==k) chmin(ans,sum-l-c[0]);else chmin(ans,sum-l);}cout << ans << endl;//for(auto&& [k,l]:mp) cout << k << ' ' << l << endl;}