結果

問題 No.2710 How many more?
ユーザー ooaiuooaiu
提出日時 2024-07-04 16:12:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 6,227 ms
コンパイル使用メモリ 317,868 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-07-04 16:12:38
合計ジャッジ時間 11,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 294 ms
7,552 KB
testcase_03 AC 168 ms
7,680 KB
testcase_04 AC 118 ms
9,728 KB
testcase_05 AC 90 ms
6,528 KB
testcase_06 AC 97 ms
8,832 KB
testcase_07 AC 99 ms
5,376 KB
testcase_08 AC 82 ms
5,376 KB
testcase_09 AC 249 ms
8,576 KB
testcase_10 AC 128 ms
6,272 KB
testcase_11 AC 215 ms
5,636 KB
testcase_12 AC 328 ms
9,600 KB
testcase_13 AC 356 ms
10,240 KB
testcase_14 AC 354 ms
10,240 KB
testcase_15 AC 357 ms
10,112 KB
testcase_16 AC 361 ms
10,240 KB
testcase_17 AC 357 ms
10,240 KB
testcase_18 AC 2 ms
5,376 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;
using mint = modint998244353;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N, Q; cin >> N >> Q;
    vector<ll> A(N); for(int i = 0; i < N; i++) cin >> A[i];
    map<ll, ll> MP; for(int i = 0; i < N; i++) MP[i + 1] = A[i]; 
    sort(A.begin(), A.end());
    while(Q--) {
        ll x, y; cin >> x >> y;
        ll l = distance(A.begin(), lower_bound(A.begin(), A.end(), MP[x]));
        ll r = distance(A.begin(), upper_bound(A.begin(), A.end(), MP[y]));
        if(l < r) cout << 0 << endl;
        else cout << l - r << endl;
    }
}
0