結果
問題 | No.2684 折々の色 |
ユーザー | naut3 |
提出日時 | 2024-03-20 22:57:57 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,194 bytes |
コンパイル時間 | 17,912 ms |
コンパイル使用メモリ | 378,772 KB |
実行使用メモリ | 54,528 KB |
最終ジャッジ日時 | 2024-09-30 09:05:43 |
合計ジャッジ時間 | 24,912 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,248 KB |
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 | AC | 36 ms
8,832 KB |
testcase_22 | AC | 172 ms
28,288 KB |
testcase_23 | AC | 123 ms
23,424 KB |
testcase_24 | AC | 50 ms
11,264 KB |
testcase_25 | AC | 83 ms
16,128 KB |
testcase_26 | AC | 169 ms
29,952 KB |
testcase_27 | AC | 105 ms
19,968 KB |
testcase_28 | AC | 138 ms
23,296 KB |
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 | AC | 375 ms
54,528 KB |
testcase_39 | AC | 386 ms
54,400 KB |
testcase_40 | AC | 393 ms
54,528 KB |
testcase_41 | AC | 414 ms
54,400 KB |
testcase_42 | AC | 378 ms
54,400 KB |
testcase_43 | AC | 385 ms
54,400 KB |
testcase_44 | AC | 383 ms
54,528 KB |
testcase_45 | AC | 377 ms
54,400 KB |
testcase_46 | AC | 368 ms
54,400 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | AC | 0 ms
5,248 KB |
testcase_57 | AC | 1 ms
5,248 KB |
ソースコード
#![allow(non_snake_case, unused_imports, unused_must_use)] use std::io::{self, prelude::*}; use std::str; fn main() { let (stdin, stdout) = (io::stdin(), io::stdout()); let mut scan = Scanner::new(stdin.lock()); let mut out = io::BufWriter::new(stdout.lock()); macro_rules! input { ($T: ty) => { scan.token::<$T>() }; ($T: ty, $N: expr) => { (0..$N).map(|_| scan.token::<$T>()).collect::<Vec<_>>() }; } let N = input!(usize); let M = input!(usize); let X = input!(isize, M); let mut C = vec![]; let mut T = vec![]; let mut cards = vec![]; for i in 0..N { let c = input!(isize, M); let t = input!(isize); let z = c.iter().map(|&v| v * t).collect::<Vec<_>>(); C.push(c); T.push(t); cards.push((z, i)); } cards.sort(); cards.reverse(); // for c in cards.iter() { // writeln!(out, "order: {}", c.1); // } // 表が i だとして裏を決めたい for i in 0..N { let t = T[i]; let c = &C[i]; let mut LR = vec![]; for j in 0..M { let cj = c[j]; let xj = X[j]; let left = 100 - t; let right = 10000 * xj - 100 * t * cj; LR.push((left, right)); } let mut ok = 0; let mut ng = N; for _ in 0..20 { let m = (ok + ng) / 2; let card = &cards[m]; let mut isok = true; for j in 0..M { let card_ct = card.0[j]; let (left, right) = LR[j]; if !(left * card_ct <= right) { isok = false; } } if isok { ok = m; } else { ng = m; } } for j in ok..ng { if cards[j].1 != i { let mut isok = true; for k in 0..M { let (left, right) = LR[k]; if left * cards[j].0[k] != right { isok = false; } } if isok { writeln!(out, "Yes"); return; } } } } writeln!(out, "No"); } struct Scanner<R> { reader: R, buf_str: Vec<u8>, buf_iter: str::SplitWhitespace<'static>, } impl<R: BufRead> Scanner<R> { fn new(reader: R) -> Self { Self { reader, buf_str: vec![], buf_iter: "".split_whitespace(), } } fn token<T: str::FromStr>(&mut self) -> T { loop { if let Some(token) = self.buf_iter.next() { return token.parse().ok().expect("Failed parse"); } self.buf_str.clear(); self.reader .read_until(b'\n', &mut self.buf_str) .expect("Failed read"); self.buf_iter = unsafe { let slice = str::from_utf8_unchecked(&self.buf_str); std::mem::transmute(slice.split_whitespace()) } } } }