結果
問題 | No.1007 コイン集め |
ユーザー | shoshosho |
提出日時 | 2020-03-07 00:01:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 44 ms / 1,500 ms |
コード長 | 1,487 bytes |
コンパイル時間 | 1,701 ms |
コンパイル使用メモリ | 167,328 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-14 10:16:22 |
合計ジャッジ時間 | 2,742 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | AC | 40 ms
6,816 KB |
testcase_13 | AC | 41 ms
6,816 KB |
testcase_14 | AC | 41 ms
6,820 KB |
testcase_15 | AC | 17 ms
6,816 KB |
testcase_16 | AC | 17 ms
6,820 KB |
testcase_17 | AC | 17 ms
6,816 KB |
testcase_18 | AC | 44 ms
6,816 KB |
testcase_19 | AC | 43 ms
6,816 KB |
testcase_20 | AC | 42 ms
6,820 KB |
testcase_21 | AC | 44 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long int li; typedef long double lb; #define rep(i,j,n) for (ll i = j; i < (n); i++) #define repr(i,j,n) for(ll i = j; i >= (n); i--) #define all(x) (x).begin(),(x).end() #define CLR(mat,f) memset(mat, f, sizeof(mat)) #define IN(a, b, x) (a<=x&&x<b) #define out(ans) cout << ans << endl template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } typedef pair<ll,ll>P; const ll mod=1e9+7; const ll INF = 1LL<<60; const ll m=1LL<<32; int main(){ ll n,k;cin>>n>>k; ll a[n];rep(i,0,n)cin>>a[i]; ll ans=0; bool e[2]; e[0]=false; ll mi[2];CLR(mi,0); repr(i,k-2,0){ if(a[i]<=1){ if(!e[0])mi[0]=ans+a[i]; e[0]=true; } if(a[i]==0)break; ans+=a[i]; } e[1]=false; ll num=0; rep(i,k,n){ if(a[i]<=1){ if(!e[1])mi[1]=num+a[i]; e[1]=true; } if(a[i]==0)break; num+=a[i]; } // out(ans<<" "<<num); // out(mi[0]<<" "<<mi[1]); if(a[k-1]==0)out(0); else if(a[k-1]==1){ if(e[0]&&e[1])out(a[k-1]+max(mi[0],mi[1])); else if(e[0])out(a[k-1]+max(mi[0],num)); else if(e[1])out(a[k-1]+max(mi[1],ans)); else out(a[k-1]+max(ans,num)); } else if(e[0]&&e[1])out(mi[0]+a[k-1]+mi[1]); else if(e[0])out(mi[0]+a[k-1]+num); else if(e[1])out(ans+a[k-1]+mi[1]); else out(ans+a[k-1]+num); return 0; }