結果

問題 No.2710 How many more?
ユーザー kaiki yamadakaiki yamada
提出日時 2024-11-01 21:45:57
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,442 bytes
コンパイル時間 4,069 ms
コンパイル使用メモリ 283,368 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-11-01 21:46:03
合計ジャッジ時間 5,831 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;
typedef vector<P> VP;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i, n) for (ll i = 0; i < (n); i++)
#define ALL(v) v.begin(), v.end()
#define OUT(n) cout << n << "\n"
// constexpr ll MOD=998244353;
// constexpr ll MOD=1000000007;
// constexpr ll INF=2e18;

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

    ll N, Q;
    cin >> N >> Q;

    VP A(N);
    REP(i, N) {
        cin >> A[i].first;
        A[i].second = i;
    }

    VP sorted_A = A;
    sort(ALL(sorted_A));

    VI C(N); // 一個前の人のindex
    ll prev = -1;
    REP(i, N) {
        if (i != 0) {
            if (sorted_A[i].first != sorted_A[i - 1].first) {
                prev = sorted_A[i - 1].second;
            }
        }
        C[sorted_A[i].second] = prev;
    }

    VI B(N); // i番目の人前にいる人の数
    ll cnt = 0;
    ll wait = 0;
    REP(i, N) {
        if (i != 0) {
            if (sorted_A[i].first != sorted_A[i - 1].first) {
                cnt += wait;
                wait = 0;
            }
        }
        B[sorted_A[i].second] = cnt;
        wait += 1;
    }

    REP(i, Q) {
        ll x, y;
        cin >> x >> y;
        ll k = 0;
        if (C[x - 1] != -1) k = B[C[x - 1]];
        ll howmany = k - B[y - 1];
        if (howmany < 0) {
            howmany = 0;
        }
        OUT(howmany);
    }
}
0