結果

問題 No.1150 シュークリームゲーム(Easy)
ユーザー DriceDrice
提出日時 2020-08-07 22:16:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,236 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 32,256 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 20:39:35
合計ジャッジ時間 1,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 17 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
long long a[100005];
int vis[100005];

long long min(long long a,long long b){ return a>b?b:a; }

long long max(long long a,long long b){ return a>b?a:b; }

long long getSum(int s,int t,int n,int da,int db){
    for(int i = 0; i < n; i++) vis[i] = 0;
    vis[s] = vis[t] = 1;
    int pa = s, pb = t;
    long long sumA = a[s], sumB = a[t];
    while(true){
        int na = pa+da, nb = pb+db;
        if(na>=n) na -= n;
        if(nb>=n) nb -= n;
        if(na<0) na += n;
        if(nb<0) nb += n;
        if(vis[na] && vis[nb]) break;
        if(!vis[na]){
            vis[na] = 1;
            sumA += a[na];
        }
        if(!vis[nb]){
            vis[nb] = 1;
            sumB += a[nb];
        }
        pa = na, pb = nb;
    }
    //printf("sumA = %lld, sumB = %lld\n",sumA,sumB);
    long long res = sumA-sumB;
    return res;
}

int main(){
    int n,s,t;
    scanf("%d%d%d",&n,&s,&t);
    s--, t--;
    for(int i = 0; i < n; i++) scanf("%lld",&a[i]);
    long long ans0 = min(getSum(s,t,n,-1,1),getSum(s,t,n,-1,-1));
    //printf("ans0 = %lld\n",ans0);
    long long ans1 = min(getSum(s,t,n,1,1),getSum(s,t,n,1,-1));
    //printf("ans1 = %lld\n",ans1);
    printf("%lld\n",max(ans0,ans1));
    return 0;
}
0