結果

問題 No.2710 How many more?
ユーザー marble72marble72
提出日時 2024-03-31 15:01:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 988 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 213,716 KB
実行使用メモリ 8,272 KB
最終ジャッジ日時 2024-09-30 20:11:16
合計ジャッジ時間 6,596 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 270 ms
6,820 KB
testcase_03 AC 168 ms
6,816 KB
testcase_04 AC 124 ms
7,888 KB
testcase_05 AC 87 ms
6,816 KB
testcase_06 AC 105 ms
7,296 KB
testcase_07 AC 101 ms
6,820 KB
testcase_08 AC 79 ms
6,820 KB
testcase_09 AC 236 ms
7,120 KB
testcase_10 AC 126 ms
6,820 KB
testcase_11 AC 199 ms
6,816 KB
testcase_12 AC 300 ms
7,888 KB
testcase_13 AC 334 ms
8,272 KB
testcase_14 AC 326 ms
8,272 KB
testcase_15 AC 332 ms
8,268 KB
testcase_16 AC 326 ms
8,272 KB
testcase_17 AC 327 ms
8,272 KB
testcase_18 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

struct UnionFind
{
  vector< int > data;

  UnionFind(int sz)
  {
    data.assign(sz, -1);
  }

  bool unite(int x, int y)
  {
    x = find(x), y = find(y);
    if(x == y) return(false);
    if(data[x] > data[y]) swap(x, y);
    data[x] += data[y];
    data[y] = x;
    return(true);
  }

  int find(int k)
  {
    if(data[k] < 0) return(k);
    return(data[k] = find(data[k]));
  }

  int size(int k)
  {
    return(-data[find(k)]);
  }
};

int main(){
  int N,Q;
  cin >> N >> Q;
  vector<int> A;
  map<int,int> mp;
  for(int i=0;i<N;i++){
    int a;
    cin >> a;
    A.push_back(a);
    mp[i] = a;
  }
  sort(A.begin(),A.end());
  for(int i=0;i<Q;i++){
    int x,y;
    cin >> x >> y;
    x--;y--;
    if(mp[x]<=mp[y]){
      cout << 0 << endl;
      continue;
    }
    auto first = lower_bound(A.begin(),A.end(),mp[x]);
    auto last = upper_bound(A.begin(),A.end(),mp[y]);
    cout << (first-last) << endl;
  }
}
0