結果

問題 No.2710 How many more?
ユーザー rotti_coderrotti_coder
提出日時 2024-03-31 14:15:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 1,024 ms
コンパイル使用メモリ 98,812 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-09-30 19:14:48
合計ジャッジ時間 6,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 296 ms
12,032 KB
testcase_03 AC 201 ms
12,544 KB
testcase_04 AC 171 ms
17,024 KB
testcase_05 AC 106 ms
10,112 KB
testcase_06 AC 147 ms
15,104 KB
testcase_07 AC 98 ms
6,820 KB
testcase_08 AC 84 ms
6,816 KB
testcase_09 AC 271 ms
14,592 KB
testcase_10 AC 139 ms
9,344 KB
testcase_11 AC 205 ms
8,220 KB
testcase_12 AC 365 ms
16,640 KB
testcase_13 AC 385 ms
18,048 KB
testcase_14 AC 400 ms
18,048 KB
testcase_15 AC 400 ms
18,048 KB
testcase_16 AC 405 ms
18,176 KB
testcase_17 AC 397 ms
18,048 KB
testcase_18 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<map>
#include<set>
using namespace std;
int main()
{
  int n,q;
  cin >> n >> q;
  vector<int>a(n);
  for(int i=0;i<n;i++)cin >> a[i];
  vector<int>b=a;
  sort(b.begin(),b.end());
  map<int,int>dict,dict2;
  set<int>st;
  for(int i=0;i<n;i++){
    if(st.count(b[i]))dict2[b[i]]=i;
    else{
      st.insert(b[i]);
      dict[b[i]]=i;
      dict2[b[i]]=i;
    }
  }
  for(;q--;){
    int x,y;
    cin >> x >> y;
    cout << max(0,dict[a[x-1]]-dict2[a[y-1]]-1) << endl;
  }
}
0