結果

問題 No.2710 How many more?
ユーザー ⁣
提出日時 2024-08-04 21:55:49
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 16,778 ms
コンパイル使用メモリ 405,912 KB
実行使用メモリ 7,180 KB
最終ジャッジ日時 2024-08-04 21:56:53
合計ジャッジ時間 21,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 160 ms
6,816 KB
testcase_03 AC 89 ms
6,944 KB
testcase_04 AC 61 ms
6,940 KB
testcase_05 AC 49 ms
6,940 KB
testcase_06 AC 53 ms
6,940 KB
testcase_07 AC 71 ms
6,940 KB
testcase_08 AC 49 ms
6,944 KB
testcase_09 AC 129 ms
6,940 KB
testcase_10 AC 73 ms
6,944 KB
testcase_11 AC 125 ms
6,944 KB
testcase_12 AC 179 ms
6,944 KB
testcase_13 AC 183 ms
7,052 KB
testcase_14 AC 184 ms
7,048 KB
testcase_15 AC 184 ms
6,940 KB
testcase_16 AC 188 ms
7,176 KB
testcase_17 AC 196 ms
7,180 KB
testcase_18 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::BTreeMap;

fn g() -> Vec<usize> {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	s.split_whitespace().flat_map(str::parse).collect()
}
fn main() {
	let q = g()[1];
	let a = g();
	let mut h = BTreeMap::new();
	a.iter().for_each(|&x| *h.entry(x).or_insert(0) += 1);
	let (mut i, mut d) = (vec![0], vec![0]);
	for (k, v) in h {
		d.push(d.last().unwrap() + v);
		i.push(k);
	}
	for _ in 0..q {
		let z = g();
		let x = i.binary_search(&a[z[0] - 1]).map_or(0, |p| d[p - 1]);
		let y = i.binary_search(&a[z[1] - 1]).map_or(0, |p| d[p]);
		println!("{}", 0.max(x - y))
	}
}
0