結果

問題 No.2710 How many more?
ユーザー elpheelphe
提出日時 2024-07-03 18:45:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 799 bytes
コンパイル時間 865 ms
コンパイル使用メモリ 83,524 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-03 18:45:43
合計ジャッジ時間 3,461 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 48 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 32 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 18 ms
6,944 KB
testcase_08 AC 17 ms
6,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 37 ms
6,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N, Q, x, y, i;
    cin >> N >> Q;
    vector<pair<int, int>> runners(N);
    vector<int> rank_of(N);
    for (i = 0; i != N; ++i)
        cin >> runners[i].first, runners[i].second = i;
    sort(runners.begin(), runners.end());

    for (i = 0; i != N; ++i)
        rank_of[runners[i].second] = i;

    for (i = 0; i != Q; ++i)
    {
        cin >> x >> y;
        if (runners[rank_of[x - 1]].first <= runners[rank_of[y - 1]].first) cout << "0\n";
        else cout << lower_bound(runners.begin(), runners.end(), runners[rank_of[x - 1]]) - upper_bound(runners.begin(), runners.end(), runners[rank_of[y - 1]]) << '\n';
    }

    return 0;
}
0