結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 5 ms
5,504 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 21 ms
7,168 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 156 ms
16,000 KB
testcase_15 AC 161 ms
15,872 KB
testcase_16 AC 183 ms
16,000 KB
testcase_17 AC 139 ms
15,232 KB
testcase_18 AC 23 ms
7,296 KB
testcase_19 AC 155 ms
15,872 KB
testcase_20 AC 13 ms
6,016 KB
testcase_21 AC 59 ms
8,960 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 12 ms
6,144 KB
testcase_27 AC 15 ms
6,656 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 63 ms
11,904 KB
testcase_30 AC 109 ms
12,928 KB
testcase_31 AC 5 ms
5,376 KB
testcase_32 AC 92 ms
12,160 KB
testcase_33 AC 128 ms
16,000 KB
testcase_34 AC 30 ms
8,064 KB
testcase_35 AC 76 ms
11,520 KB
testcase_36 AC 106 ms
13,952 KB
testcase_37 AC 66 ms
9,472 KB
testcase_38 AC 159 ms
15,104 KB
testcase_39 AC 152 ms
14,720 KB
testcase_40 AC 72 ms
12,416 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 67 ms
12,672 KB
testcase_43 AC 3 ms
5,376 KB
testcase_44 AC 3 ms
5,376 KB
testcase_45 AC 4 ms
5,376 KB
testcase_46 AC 3 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 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