結果

問題 No.2710 How many more?
ユーザー kekenxkekenx
提出日時 2024-05-26 21:53:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 1,330 ms
コンパイル使用メモリ 94,068 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-05-26 21:54:05
合計ジャッジ時間 6,446 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 283 ms
10,240 KB
testcase_03 AC 171 ms
10,752 KB
testcase_04 AC 149 ms
14,080 KB
testcase_05 AC 99 ms
8,704 KB
testcase_06 AC 112 ms
12,672 KB
testcase_07 AC 98 ms
6,944 KB
testcase_08 AC 80 ms
6,944 KB
testcase_09 AC 234 ms
12,160 KB
testcase_10 AC 131 ms
8,064 KB
testcase_11 AC 195 ms
7,180 KB
testcase_12 AC 340 ms
13,824 KB
testcase_13 AC 340 ms
14,976 KB
testcase_14 AC 334 ms
15,104 KB
testcase_15 AC 370 ms
14,976 KB
testcase_16 AC 347 ms
14,976 KB
testcase_17 AC 349 ms
15,104 KB
testcase_18 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>
#include <vector>
#include <algorithm>
#include <map>

using namespace std;

int main() {
  int N, Q; cin >> N >> Q;

  vector<int> A(N);
  for (int &a: A) {
    cin >> a;
    a = -a;
  }
  vector<int> b = A;
  sort(b.begin(), b.end());

  map<int, vector<int>> mp;
  for (int i = 0; i < N; i++) {
    mp[b[i]].push_back(i);
  }

  while (Q--) {
    int x, y; cin>> x>> y;
    x--; y--;
    int a1 = A[x], a2 = A[y];
    int frm = mp[a1].back(), to = mp[a2][0];
    if (frm >= to)
      cout << 0 << endl;
    else
      cout << to - frm - 1 << endl;
  } 
  return 0;
}
  

0