結果

問題 No.2710 How many more?
ユーザー 259-Momone259-Momone
提出日時 2024-11-01 20:33:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 4,129 ms
コンパイル使用メモリ 335,444 KB
実行使用メモリ 12,992 KB
最終ジャッジ日時 2024-11-01 20:33:59
合計ジャッジ時間 9,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 246 ms
8,740 KB
testcase_03 AC 150 ms
9,140 KB
testcase_04 AC 133 ms
12,632 KB
testcase_05 AC 99 ms
7,908 KB
testcase_06 AC 108 ms
10,176 KB
testcase_07 AC 96 ms
6,816 KB
testcase_08 AC 77 ms
6,820 KB
testcase_09 AC 218 ms
9,888 KB
testcase_10 AC 120 ms
6,820 KB
testcase_11 AC 191 ms
6,816 KB
testcase_12 AC 286 ms
12,616 KB
testcase_13 AC 300 ms
12,988 KB
testcase_14 AC 325 ms
12,984 KB
testcase_15 AC 304 ms
12,992 KB
testcase_16 AC 298 ms
12,984 KB
testcase_17 AC 302 ms
12,988 KB
testcase_18 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>

int main() {
    using namespace std;
    unsigned N, Q;
    cin >> N >> Q;

    vector<unsigned> A(N);
    for (auto &a : A)
        cin >> a;

    unordered_map<unsigned, unsigned> value_to_rank_lower, value_to_rank_upper;
    {
        vector<unsigned> tmp(A);
        ranges::sort(tmp);
        for (unsigned i{}; i < size(tmp); i++) {
            value_to_rank_upper[tmp[i]] = i;
            if (!value_to_rank_lower.contains(tmp[i]))
                value_to_rank_lower[tmp[i]] = i;
        }
    }

    for (unsigned i{}; i < Q; i++) {
        unsigned x, y;
        cin >> x >> y;
        --x;
        --y;
        cout << (value_to_rank_lower[A[x]] - min(value_to_rank_upper[A[y]] + 1, value_to_rank_lower[A[x]])) << endl;
    }

    return 0;
}
0