結果
問題 | No.568 じゃんじゃん 落とす 委員会 |
ユーザー | koba-e964 |
提出日時 | 2021-11-23 17:03:06 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 45 ms / 1,000 ms |
コード長 | 2,605 bytes |
コンパイル時間 | 13,190 ms |
コンパイル使用メモリ | 401,576 KB |
実行使用メモリ | 11,920 KB |
最終ジャッジ日時 | 2024-06-25 13:37:56 |
合計ジャッジ時間 | 15,312 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
11,904 KB |
testcase_01 | AC | 44 ms
11,904 KB |
testcase_02 | AC | 6 ms
6,656 KB |
testcase_03 | AC | 7 ms
6,784 KB |
testcase_04 | AC | 7 ms
6,784 KB |
testcase_05 | AC | 7 ms
6,784 KB |
testcase_06 | AC | 6 ms
6,528 KB |
testcase_07 | AC | 7 ms
6,784 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 7 ms
6,656 KB |
testcase_10 | AC | 7 ms
6,784 KB |
testcase_11 | AC | 7 ms
6,656 KB |
testcase_12 | AC | 44 ms
11,520 KB |
testcase_13 | AC | 43 ms
11,648 KB |
testcase_14 | AC | 44 ms
11,648 KB |
testcase_15 | AC | 43 ms
11,392 KB |
testcase_16 | AC | 39 ms
11,420 KB |
testcase_17 | AC | 40 ms
11,648 KB |
testcase_18 | AC | 42 ms
11,520 KB |
testcase_19 | AC | 43 ms
11,648 KB |
testcase_20 | AC | 40 ms
11,520 KB |
testcase_21 | AC | 39 ms
11,520 KB |
testcase_22 | AC | 45 ms
11,920 KB |
testcase_23 | AC | 6 ms
6,656 KB |
testcase_24 | AC | 7 ms
6,528 KB |
testcase_25 | AC | 7 ms
6,656 KB |
ソースコード
use std::cmp::*; // https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 macro_rules! input { ($($r:tt)*) => { let stdin = std::io::stdin(); let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock())); let mut next = move || -> String{ bytes.by_ref().map(|r|r.unwrap() as char) .skip_while(|c|c.is_whitespace()) .take_while(|c|!c.is_whitespace()) .collect() }; input_inner!{next, $($r)*} }; } macro_rules! input_inner { ($next:expr) => {}; ($next:expr,) => {}; ($next:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($next, $t); input_inner!{$next $($r)*} }; } macro_rules! read_value { ($next:expr, ( $($t:tt),* )) => { ($(read_value!($next, $t)),*) }; ($next:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>() }; ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error")); } // https://yukicoder.me/problems/no/568 (3) // SA を全探索して SB を二分探索。 // Tags: ad-hoc-data-structure, binary-search, occurrence fn main() { input! { n: usize, m: i32, xab: [(usize, usize, usize); n], } const W: usize = 100_100; let mut ans = n as i32; let mut aidd = vec![vec![]; W]; let mut two = 0; let mut three = 0; let mut freq = vec![[0i32; 6]; W]; let mut pos = 0; for i in 0..n { let (x, a, b) = xab[i]; aidd[a].push(i); if x >= 2 { three += 1; } if x == 1 { two += 1; } freq[b][x + 1] += 1; } for sa in (0..W).rev() { for &idx in &aidd[sa] { let (x, _a, b) = xab[idx]; let nx = x + if pos <= b { 1 } else { 0 }; freq[b][nx] -= 1; freq[b][nx + 1] += 1; match nx { 1 => two += 1, 2 => { two -= 1; three += 1; } _ => {} } } while pos < W && two + three >= m { if two + three - freq[pos][2] >= m { three -= freq[pos][3]; two += freq[pos][3] - freq[pos][2]; for j in 0..5 { freq[pos][j] = freq[pos][j + 1]; } pos += 1; } else { break; } } if two + three >= m { ans = min(ans, three); } } println!("{}", ans); }