結果

問題 No.2710 How many more?
ユーザー k82bk82b
提出日時 2024-03-31 14:08:23
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 4,670 ms
コンパイル使用メモリ 213,816 KB
実行使用メモリ 8,168 KB
最終ジャッジ日時 2024-09-30 19:02:03
合計ジャッジ時間 5,696 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 120 ms
6,820 KB
testcase_03 AC 74 ms
6,896 KB
testcase_04 AC 57 ms
7,584 KB
testcase_05 AC 43 ms
6,820 KB
testcase_06 AC 48 ms
6,820 KB
testcase_07 AC 49 ms
6,816 KB
testcase_08 AC 37 ms
6,816 KB
testcase_09 AC 100 ms
6,816 KB
testcase_10 AC 59 ms
6,820 KB
testcase_11 AC 95 ms
6,816 KB
testcase_12 AC 131 ms
7,160 KB
testcase_13 AC 138 ms
8,040 KB
testcase_14 AC 139 ms
8,168 KB
testcase_15 AC 141 ms
6,816 KB
testcase_16 AC 137 ms
7,136 KB
testcase_17 AC 140 ms
7,620 KB
testcase_18 AC 1 ms
6,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std, core.bitop;
bool chmin(T)(ref T SE, T MI) { if (SE > MI) { SE = MI; return true; } else { return false; } }
bool chmax(T)(ref T SE, T MI) { if (SE < MI) { SE = MI; return true; } else { return false; } }
int lowerBound(T)(T[] SE, T MI) { int lo = -1, hi = cast(int)(SE.length); while (hi - lo > 1) { int mid = lo + hi >> 1; (SE[mid] < MI ? lo : hi) = mid; } return hi; }
int upperBound(T)(T[] SE, T MI) { int lo = -1, hi = cast(int)(SE.length); while (hi - lo > 1) { int mid = lo + hi >> 1; (SE[mid] > MI ? hi : lo) = mid; } return hi; }
void main() {
	int N, Q;
	readf("%s %s\n", N, Q);
	auto A = readln.chomp.split.to!(int[]);
	auto B = A.dup;
	B.sort;
	foreach (i; 0 .. Q) {
		int x, y;
		readf("%s %s\n", x, y);
		int idx = B.lowerBound(A[--x]);
		int idy = B.upperBound(A[--y]);
		max(0, idx - idy).writeln;
	}
}
0