結果
問題 | No.2710 How many more? |
ユーザー | haihamabossu |
提出日時 | 2024-03-31 14:19:50 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 810 bytes |
コンパイル時間 | 2,139 ms |
コンパイル使用メモリ | 209,464 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-09-30 19:22:02 |
合計ジャッジ時間 | 3,879 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 17 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, n) for (int i = 0; i < (int)(n); i++) void solve() { ll n, q; cin >> n >> q; vector<ll> a(n), r(n), cnt(n); rep(i, n) cin >> a[i]; { vector<pair<ll, ll>> b(n); rep(i, n) b[i] = {a[i], i}; sort(b.begin(), b.end()); ll now = 0, d = 0; rep(i, n) { auto [cd, x] = b[i]; if (d < cd) { d = cd; now = i; } r[x] = now; cnt[now]++; } } rep(qi, q) { ll x, y; cin >> x >> y, x--, y--; ll ans = 0; if (r[y] < r[x]) ans = r[x] - r[y] - cnt[r[y]]; cout << ans << '\n'; } } int main() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); int T = 1; for (int t = 0; t < T; t++) { solve(); } return 0; }