結果

問題 No.2710 How many more?
ユーザー shinchanshinchan
提出日時 2024-03-31 13:59:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 2,580 ms
コンパイル使用メモリ 210,716 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-30 18:45:34
合計ジャッジ時間 5,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 160 ms
7,936 KB
testcase_03 AC 104 ms
8,192 KB
testcase_04 AC 101 ms
10,496 KB
testcase_05 AC 62 ms
6,912 KB
testcase_06 AC 85 ms
9,472 KB
testcase_07 AC 62 ms
6,824 KB
testcase_08 AC 50 ms
6,816 KB
testcase_09 AC 144 ms
9,216 KB
testcase_10 AC 81 ms
6,820 KB
testcase_11 AC 118 ms
6,820 KB
testcase_12 AC 190 ms
10,240 KB
testcase_13 AC 209 ms
11,008 KB
testcase_14 AC 205 ms
11,008 KB
testcase_15 AC 211 ms
10,880 KB
testcase_16 AC 214 ms
11,008 KB
testcase_17 AC 204 ms
11,008 KB
testcase_18 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define all(v) (v).begin(),(v).end()
#define pb(a) push_back(a)
#define rep(i, n) for(int i=0;i<n;i++)
#define foa(e, v) for(auto&& e : v)
using ll = long long;
const ll MOD7 = 1000000007, MOD998 = 998244353, INF = (1LL << 60);
#define dout(a) cout<<fixed<<setprecision(10)<<a<<endl;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll n, q;
    cin >> n >> q;
    vector<ll> a(n);
    map<ll, ll> mp;
    rep(i, n) {
        cin >> a[i];
        mp[a[i]] ++;
    }
    int id = 1;
    for(auto [x, y] : mp) {
        mp[x] = id ++;
    }

    rep(i, n) a[i] = mp[a[i]];
    vector<ll> sum(id + 1, 0);
    foa(e, a) sum[e] ++;
    for(int i = 0; i < id; i ++) sum[i + 1] += sum[i];
    rep(i, q) {
        int x, y;
        cin >> x >> y;
        x --; y --;
        cout << max(0LL, sum[a[x] - 1] - sum[a[y]]) << endl;
    }
    return 0;
}
0