結果

問題 No.871 かえるのうた
ユーザー titiatitia
提出日時 2019-08-30 22:28:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 957 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 201,264 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-22 00:45:24
合計ジャッジ時間 5,531 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 WA -
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 6 ms
5,248 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 161 ms
5,760 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 14 ms
5,248 KB
testcase_21 AC 55 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 4 ms
5,248 KB
testcase_26 AC 11 ms
5,248 KB
testcase_27 WA -
testcase_28 AC 2 ms
5,248 KB
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 AC 53 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 54 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 3 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
    int N;
    int K;
    cin>>N>>K;
    K-=1;

    long long X[N];
    long long A[N];

    for (int i=0;i<N;i+=1){
        cin>>X[i];
    }
    for (int i=0;i<N;i+=1){
        cin>>A[i];
    }

    long long PLUS=X[K]+A[K];
    long long MINUS=X[K]-A[K];
    int ANS[N];

    for (int roop=0;roop<100;roop+=1){

        for (int i=0;i<N;i+=1){
            if (X[i]<=PLUS && X[i]>=MINUS){
                ANS[i]=1;
                PLUS=max(PLUS,X[i]+A[i]);
                MINUS=min(MINUS,X[i]-A[i]);
            }
        }

        for (int i=N-1;i>=0;i-=1){
            if (X[i]<=PLUS && X[i]>=MINUS){
                ANS[i]=1;
                PLUS=max(PLUS,X[i]+A[i]);
                MINUS=min(MINUS,X[i]-A[i]);
            }
        }

    }
    int AW=0;
    for (int i=0;i<N;i+=1){
        if (ANS[i]==1){
            AW+=1;
        }
    }

    cout<<AW<<endl;
}
0