結果

問題 No.2710 How many more?
ユーザー ooaiuooaiu
提出日時 2024-07-04 03:29:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 856 bytes
コンパイル時間 5,277 ms
コンパイル使用メモリ 317,024 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-07-04 03:29:34
合計ジャッジ時間 10,154 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 259 ms
9,344 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 90 ms
6,940 KB
testcase_08 AC 75 ms
6,944 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 186 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,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
#ifdef LOCAL
#include <algo/debug.h>
#else
#define debug(...) void(0)
#endif
#include<atcoder/all>
using namespace atcoder;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N, Q; cin >> N >> Q;
    vector<int> A(N); for(int i = 0; i < N; i++) cin >> A[i];
    vector<int> B(N); copy(A.begin(), A.end(), B.begin());
    sort(B.begin(), B.end()); B.erase(unique(B.begin(), B.end()), B.end());
    map<int, int> ord; for(int i = 0; i < int(B.size()); i++) ord[B[i]] = i;
    map<int, int> idx; for(int i = 0; i < N; i++) idx[i] = ord[A[i]];
    while(Q--) {
        int x, y; cin >> x >> y;
        x--; y--;
        if(idx[x] <= idx[y]) cout << 0 << endl;
        else {
            cout << (idx[x] - idx[y] - 1) << endl;
        }
    }
}
0