結果

問題 No.871 かえるのうた
ユーザー onakaT_TitaionakaT_Titai
提出日時 2019-06-12 16:27:36
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 1,674 ms
コンパイル使用メモリ 173,084 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-05-07 16:19:29
合計ジャッジ時間 4,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 62 ms
11,776 KB
testcase_15 AC 63 ms
11,648 KB
testcase_16 AC 74 ms
11,776 KB
testcase_17 AC 55 ms
11,264 KB
testcase_18 AC 11 ms
5,376 KB
testcase_19 AC 61 ms
11,904 KB
testcase_20 AC 6 ms
5,376 KB
testcase_21 AC 23 ms
6,400 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 6 ms
5,376 KB
testcase_27 AC 8 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 30 ms
8,704 KB
testcase_30 AC 40 ms
9,472 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 37 ms
8,832 KB
testcase_33 AC 58 ms
11,904 KB
testcase_34 AC 15 ms
5,504 KB
testcase_35 AC 35 ms
8,320 KB
testcase_36 AC 47 ms
10,240 KB
testcase_37 AC 27 ms
6,784 KB
testcase_38 AC 61 ms
11,264 KB
testcase_39 AC 56 ms
10,880 KB
testcase_40 AC 31 ms
9,088 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 30 ms
8,960 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(void){
    cin.tie(0);
    ios::sync_with_stdio(false);

    int N; cin >> N;
    int K; cin >> K;
    K -= 1;
    vector<long long> X(N);
    set<pair<long long, int>> s;
    for (int i = 0; i < N; i++) {
        cin >> X[i];
        if (i != K) s.insert({X[i], i});
    }
    vector<pair<long long, long long>> interval(N);
    for (int i = 0; i < N; i++) {
        long long A; cin >> A;
        interval[i] = {X[i] - A, X[i] + A};
    }
    
    stack<pair<long long, long long>> st;
    st.push(interval[K]);
    while (!st.empty()) {
        pair<long long, long long> p = st.top();
        st.pop();
        auto itr = s.lower_bound({p.first, 0});
        while (itr != s.end() && itr->first <= p.second) {
            st.push(interval[itr->second]);
            s.erase(itr++);
        }
    }
    
    cout << N - s.size() << endl;
    return 0;
}

0