結果

問題 No.1007 コイン集め
ユーザー ysystem7ysystem7
提出日時 2020-03-17 15:31:48
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 52 ms / 1,500 ms
コード長 1,285 bytes
コンパイル時間 5,629 ms
コンパイル使用メモリ 212,460 KB
最終ジャッジ日時 2025-01-09 07:31:51
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
#define cinf(n,x) for(int i=0;i<(n);i++)cin>>x[i];
#define ft first
#define sc second
#define pb push_back
#define lb lower_bound
#define ub upper_bound
#define all(v) (v).begin(),(v).end()
#define mod 1000000007
using namespace std;
typedef long long ll;
template<class T> using V=vector<T>;
using Graph = vector<vector<int>>;
using P=pair<ll,ll>;
typedef unsigned long long ull;
typedef long double ldouble;
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }

const ll INF=1e18;

int main(){
    ll n,k;
    cin>>n>>k;
    V<ll> a(n);
    cinf(n,a);
    k--;
    ll ans=0;
    ll m=k-1;
    ll cleft=0,cright=0;
    while(m>=0){
        if(a[m]==0) break;
        if(a[m]==1){
            cleft++;
            break;
        }
        cleft+=a[m];
        m--;
    }
    m=k+1;
    while(m<n){
        if(a[m]==0) break;
        if(a[m]==1){
            cright++;
            break;
        }
        cright+=a[m];
        m++;
    }
    if(a[k]==1) ans=max(cright,cleft)+1;
    else if(a[k]>=2) ans=cright+cleft+a[k];
    cout<<ans<<endl;
}
0