結果
問題 | No.2710 How many more? |
ユーザー | elphe |
提出日時 | 2024-07-03 18:50:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 64 ms / 2,000 ms |
コード長 | 843 bytes |
コンパイル時間 | 812 ms |
コンパイル使用メモリ | 84,292 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 18:50:03 |
合計ジャッジ時間 | 3,035 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 49 ms
6,940 KB |
testcase_03 | AC | 34 ms
6,940 KB |
testcase_04 | AC | 30 ms
6,940 KB |
testcase_05 | AC | 20 ms
6,944 KB |
testcase_06 | AC | 28 ms
6,940 KB |
testcase_07 | AC | 18 ms
6,940 KB |
testcase_08 | AC | 16 ms
6,940 KB |
testcase_09 | AC | 46 ms
6,944 KB |
testcase_10 | AC | 27 ms
6,940 KB |
testcase_11 | AC | 36 ms
6,944 KB |
testcase_12 | AC | 57 ms
6,940 KB |
testcase_13 | AC | 62 ms
6,944 KB |
testcase_14 | AC | 62 ms
6,944 KB |
testcase_15 | AC | 62 ms
6,944 KB |
testcase_16 | AC | 63 ms
6,944 KB |
testcase_17 | AC | 64 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int N, Q, x, y, i; cin >> N >> Q; vector<pair<int, int>> runners(N); vector<int> rank_of(N); for (i = 0; i != N; ++i) cin >> runners[i].first, runners[i].second = i; sort(runners.begin(), runners.end()); for (i = 0; i != N; ++i) rank_of[runners[i].second] = i; for (i = 0; i != Q; ++i) { cin >> x >> y; if (runners[rank_of[x - 1]].first <= runners[rank_of[y - 1]].first) cout << "0\n"; else cout << lower_bound(runners.begin(), runners.end(), make_pair(runners[rank_of[x - 1]].first, 0)) - lower_bound(runners.begin(), runners.end(), make_pair(runners[rank_of[y - 1]].first + 1, 0)) << '\n'; } return 0; }