結果

問題 No.2710 How many more?
ユーザー うえこうえこ
提出日時 2024-03-31 14:06:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 1,876 ms
コンパイル使用メモリ 174,820 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-30 18:59:09
合計ジャッジ時間 5,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 218 ms
6,816 KB
testcase_03 AC 130 ms
6,816 KB
testcase_04 AC 105 ms
6,816 KB
testcase_05 AC 74 ms
6,820 KB
testcase_06 AC 89 ms
6,816 KB
testcase_07 AC 92 ms
6,816 KB
testcase_08 AC 68 ms
6,816 KB
testcase_09 AC 183 ms
6,820 KB
testcase_10 AC 107 ms
6,816 KB
testcase_11 AC 169 ms
6,816 KB
testcase_12 AC 241 ms
6,820 KB
testcase_13 AC 266 ms
6,820 KB
testcase_14 AC 265 ms
6,816 KB
testcase_15 AC 264 ms
6,816 KB
testcase_16 AC 261 ms
6,816 KB
testcase_17 AC 240 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using ll=long long;
const long long INF=1LL<<60;
void Compress(std::vector<ll>& A)
{
    std::vector<ll> B=A;//
    std::sort(B.begin(),B.end());
    B.erase(std::unique(B.begin(),B.end()),B.end());
    for(auto& a:A){
        a=static_cast<ll>(std::lower_bound(B.begin(),B.end(),a)-B.begin());
    }
}
int main(){
    ll n,q;
    std::cin >> n >> q;
    std::vector<ll>A(n);
    for(auto&a:A){
        std::cin >> a;
        a*=-1;
    }
    Compress(A);
    std::vector<ll>sum(n+1);
    for(int i=0;i<n;++i)sum[A[i]]++;
    for(int i=0;i<n;++i)sum[i+1]+=sum[i];
    while(q--){
        ll x,y;
        std::cin >> x >> y;
        --x;--y;
        x=A[x];y=A[y];
        if(y==0)std::cout << 0 << '\n';
        else std::cout << std::max(0LL,sum[y-1]-sum[x]) << '\n';
    }
}
0