結果
問題 | No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩 |
ユーザー | koba-e964 |
提出日時 | 2022-03-19 10:09:55 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,314 bytes |
コンパイル時間 | 13,483 ms |
コンパイル使用メモリ | 378,236 KB |
実行使用メモリ | 24,896 KB |
最終ジャッジ日時 | 2024-10-04 04:06:56 |
合計ジャッジ時間 | 30,810 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | AC | 614 ms
24,704 KB |
testcase_49 | AC | 561 ms
24,576 KB |
testcase_50 | AC | 633 ms
24,576 KB |
testcase_51 | AC | 589 ms
24,704 KB |
testcase_52 | AC | 554 ms
24,576 KB |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | AC | 488 ms
24,448 KB |
testcase_59 | AC | 489 ms
24,704 KB |
testcase_60 | AC | 497 ms
24,576 KB |
testcase_61 | AC | 504 ms
24,576 KB |
testcase_62 | AC | 501 ms
24,704 KB |
testcase_63 | AC | 40 ms
24,576 KB |
testcase_64 | AC | 42 ms
24,704 KB |
testcase_65 | AC | 40 ms
24,896 KB |
testcase_66 | AC | 40 ms
24,704 KB |
testcase_67 | AC | 39 ms
24,576 KB |
testcase_68 | AC | 1 ms
5,248 KB |
testcase_69 | AC | 1 ms
5,248 KB |
testcase_70 | AC | 1 ms
5,248 KB |
testcase_71 | AC | 1 ms
5,248 KB |
testcase_72 | AC | 1 ms
5,248 KB |
testcase_73 | AC | 1 ms
5,248 KB |
ソースコード
// 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 ; $len:expr ]) => { (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>() }; ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error")); } fn two(a: &[i64], b: &[i64]) -> Vec<(i64, i64, i64)> { let mut ans = vec![]; for &a in a { for &b in b { ans.push((a * b, a, b)); } } ans.sort_unstable(); ans } fn quo(a: i64, b: i64) -> i64 { assert!(b > 0); let mut r = a % b; if r < 0 { r += b; } (a - r) / b } const INF: i64 = 1 << 60; // リジャッジで落ちたので、定数倍高速化して通した。 // またリジャッジで落ちたので log を落として通した。 fn main() { input! { k: usize, l: usize, m: usize, n: usize, s: i64, a: [i64; k], b: [i64; l], c: [i64; m], d: [i64; n], } let fst = two(&a, &b); let snd = two(&c, &d); let snd_light: Vec<_> = snd.iter().map(|&(a, b, _)| (a, b)).collect(); let mut pass = INF; let mut fail = -INF; while pass - fail > 1 { let mid = fail + (pass - fail) / 2; let mut count = 0; let mut pos = snd.len(); let mut neg = 0; for &(f, _, _) in &fst { if f == 0 { if mid >= 0 { count += snd.len() as i64; } } else if f > 0 { let q = quo(mid, f); while pos > 0 && snd_light[pos - 1].0 > q { pos -= 1; } count += pos as i64; } else { let q = quo(-mid - f - 1, -f); while neg < snd.len() && snd_light[neg].0 < q { neg += 1; } count += (snd.len() - neg) as i64; } } if count >= s { pass = mid; } else { fail = mid; } } println!("{}", pass); for &(f, f1, f2) in &fst { if f == 0 { if pass != 0 { continue; } let (_, s1, s2) = snd[0]; println!("{} {} {} {}", f1, f2, s1, s2); return; } if pass % f != 0 { continue; } let q = pass / f; let lo = snd.binary_search(&(q, -INF, -INF)).unwrap_err(); if lo < snd.len() { let (q2, s1, s2) = snd[lo]; if q2 == q { println!("{} {} {} {}", f1, f2, s1, s2); return; } } } }