結果

問題 No.871 かえるのうた
ユーザー Y17Y17
提出日時 2019-08-30 22:57:15
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 1,366 ms
コンパイル使用メモリ 174,832 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-11-30 10:49:42
合計ジャッジ時間 5,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 23 ms
7,168 KB
testcase_13 AC 7 ms
6,820 KB
testcase_14 AC 163 ms
15,872 KB
testcase_15 AC 164 ms
15,872 KB
testcase_16 AC 195 ms
16,128 KB
testcase_17 AC 147 ms
15,232 KB
testcase_18 AC 26 ms
7,168 KB
testcase_19 AC 167 ms
15,872 KB
testcase_20 AC 15 ms
6,816 KB
testcase_21 AC 63 ms
9,088 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 4 ms
6,816 KB
testcase_26 AC 12 ms
6,816 KB
testcase_27 AC 16 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 64 ms
12,032 KB
testcase_30 AC 116 ms
12,928 KB
testcase_31 AC 5 ms
6,820 KB
testcase_32 AC 90 ms
12,288 KB
testcase_33 AC 131 ms
15,744 KB
testcase_34 AC 30 ms
7,936 KB
testcase_35 AC 77 ms
11,520 KB
testcase_36 AC 111 ms
14,080 KB
testcase_37 AC 65 ms
9,344 KB
testcase_38 AC 162 ms
15,104 KB
testcase_39 AC 150 ms
14,592 KB
testcase_40 AC 70 ms
12,288 KB
testcase_41 AC 2 ms
6,820 KB
testcase_42 AC 71 ms
12,672 KB
testcase_43 AC 2 ms
6,816 KB
testcase_44 AC 3 ms
6,816 KB
testcase_45 AC 4 ms
6,816 KB
testcase_46 AC 3 ms
6,816 KB
testcase_47 AC 2 ms
6,816 KB
testcase_48 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long
signed main(){
    int n, k;
    cin >> n >> k;

    int x[100010];
    int a[100010];
    for(int i = 0;i < n;i++) cin >> x[i];
    for(int i = 0;i < n;i++) cin >> a[i];

    map<int, int> mp;
    set<int> st;

    for(int i = 0;i < n;i++){
        mp[x[i]] = i;
        if(i != k-1) st.insert(x[i]);
    }

    int ans = 0;

    queue<int> que;
    que.push(x[k-1]);

    while(!que.empty()){
        int idx = mp[que.front()];
        que.pop();
        ans++;

        int l = x[idx]-a[idx];
        int r = x[idx]+a[idx];

        for(auto itr = st.lower_bound(l);itr != st.end() && *itr <= r;){
            que.push(*itr);
            int tmp = *itr;
            *itr++;
            st.erase(tmp);
        }
    }

    cout << ans << endl;
    return 0;
}
0