結果
問題 | No.2710 How many more? |
ユーザー | くけ |
提出日時 | 2024-03-31 15:26:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 315 ms / 2,000 ms |
コード長 | 1,170 bytes |
コンパイル時間 | 4,802 ms |
コンパイル使用メモリ | 267,912 KB |
実行使用メモリ | 7,144 KB |
最終ジャッジ日時 | 2024-09-30 20:42:10 |
合計ジャッジ時間 | 9,100 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 255 ms
6,820 KB |
testcase_03 | AC | 147 ms
6,820 KB |
testcase_04 | AC | 112 ms
7,036 KB |
testcase_05 | AC | 84 ms
6,824 KB |
testcase_06 | AC | 96 ms
6,840 KB |
testcase_07 | AC | 99 ms
6,816 KB |
testcase_08 | AC | 77 ms
6,816 KB |
testcase_09 | AC | 219 ms
6,824 KB |
testcase_10 | AC | 118 ms
6,820 KB |
testcase_11 | AC | 192 ms
6,820 KB |
testcase_12 | AC | 287 ms
6,872 KB |
testcase_13 | AC | 315 ms
7,020 KB |
testcase_14 | AC | 314 ms
7,016 KB |
testcase_15 | AC | 315 ms
7,020 KB |
testcase_16 | AC | 309 ms
7,144 KB |
testcase_17 | AC | 315 ms
7,144 KB |
testcase_18 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; typedef long long ll; #define rep(i, n) for (int i = 0; i < n; i++) #define chmin(x, y) x = min(x, y) #define chmax(x, y) x = max(x, y) int main(){ ll n , q ; cin >> n >> q ; vector<pair<ll,ll>> A ; vector<pair<ll,ll>> B(n) ; rep(i,n){ cin >> B[i].first ; B[i].second = i ; A.push_back(B[i]) ; } sort(A.begin(),A.end()) ; rep(i,q){ ll x , y ; cin >> x >> y ; x-- , y-- ; ll l = 0 , r = n ; while ( r - l > 1 ) { ll m = ( r + l ) / 2 ; if( B[x].first >= A[m].first ) l = m ; else r = m ; } ll a = l ; l = 0 , r = n ; while ( r - l > 1 ) { ll m = ( r + l ) / 2 ; if( B[y].first >= A[m].first ) l = m ; else r = m ; } ll b = l ; if( a+1 < n && A[a+1].first == B[x].first ) a++ ; if( b+1 < n && A[b+1].first == B[x].first ) b++ ; if( a-1 >= 0 && A[a-1].first == B[x].first ) a-- ; if( b-1 >= 0 && A[b-1].first == B[x].first ) b-- ; cout << max((ll)a-b-1,0LL) << endl ; } }