結果
問題 | No.2202 贅沢てりたまチキン |
ユーザー | powell |
提出日時 | 2024-04-12 22:18:54 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,828 bytes |
コンパイル時間 | 13,489 ms |
コンパイル使用メモリ | 379,204 KB |
実行使用メモリ | 6,144 KB |
最終ジャッジ日時 | 2024-10-02 23:24:59 |
合計ジャッジ時間 | 15,261 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 11 ms
6,016 KB |
testcase_15 | WA | - |
testcase_16 | AC | 8 ms
5,248 KB |
testcase_17 | WA | - |
testcase_18 | AC | 4 ms
5,248 KB |
testcase_19 | AC | 10 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | AC | 10 ms
6,144 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 12 ms
6,016 KB |
testcase_26 | WA | - |
testcase_27 | AC | 11 ms
6,016 KB |
コンパイルメッセージ
warning: variable `N` should have a snake case name --> src/main.rs:9:9 | 9 | N: usize, | ^ help: convert the identifier to snake case: `n` | = note: `#[warn(non_snake_case)]` on by default warning: variable `A` should have a snake case name --> src/main.rs:10:9 | 10 | A: [usize; N] | ^ help: convert the identifier to snake case: `a`
ソースコード
// 5000 < 2^13 use proconio::input; fn main() { // let N = get!(usize); // let A = get!(usize;;); input! { N: usize, A: [usize; N] } // 総xorが0にならない場合は拒否 if A.iter().fold(0, |a, b| a ^ b) != 0 { println!("No"); return; } // 5001 < N の場合 // 鳩の巣原理より,同じ数字が2つ以上存在する → これをグループにすれば良い if N > 5001 { println!("Yes"); return; } // dp[i][j] := i番目までの部分列の総xorがjになるものの長さの最小値 let mut dp = vec![vec![INF; SIZE]; N]; // 初期化 dp[0][A[0]] = 1; for i in 1..N { for j in 0..SIZE { chmin! { dp[i][j], dp[i - 1][j], dp[i - 1][j ^ A[i]] + 1, }; } } // debug2D!(dp); if dp[N - 1][0] < N { println!("Yes"); } else { println!("No"); } } const INF: usize = 1001001001001001001; const SIZE: usize = 1 << 13; mod get_macro { //! 入力用マクロ //! - 参考:[Rustで競技プログラミング スターターキット](https://qiita.com/hatoo@github/items/fa14ad36a1b568d14f3e) /// 入力用マクロ #[macro_export] macro_rules! get { ($t:ty) => { { let mut line = String::new(); std::io::stdin().read_line(&mut line).unwrap(); line.trim().parse::<$t>().unwrap() } }; ($($t:ty),*) => { { let mut line = String::new(); std::io::stdin().read_line(&mut line).unwrap(); let mut iter = line.split_whitespace(); ( $(iter.next().unwrap().parse::<$t>().unwrap(),)* ) } }; ($t:ty ; $n:expr) => { (0..$n).map(|_| get_!($t) ).collect::<Vec<_>>() }; ($($t:ty),* ; $n:expr) => { (0..$n).map(|_| get_!($($t),*) ).collect::<Vec<_>>() }; ($t:ty ;;) => { { let mut line = String::new(); std::io::stdin().read_line(&mut line).unwrap(); line.split_whitespace() .map(|t| t.parse::<$t>().unwrap()) .collect::<Vec<_>>() } }; ($t:ty ;; $n:expr) => { (0..$n).map(|_| get_!($t ;;) ).collect::<Vec<_>>() }; } } mod debug_macro { //! デバッグ用マクロ /// デバッグ用マクロ #[macro_export] macro_rules! debug { ( $($val:expr),* $(,)* ) => {{ #[cfg(debug_assertions)] eprintln!( concat!($(stringify!($val), " = {:?}, "),*), $($val),* ); }}; } /// 配列用マクロ #[macro_export] macro_rules! debug2D { ( $array:expr ) => {{ #![cfg(debug_assertions)] eprintln!("{}: ", stringify!($array)); for row in &$array { eprintln!("{:?}", row); } }}; } } mod chmin { //! chminの実装 /// `chmin!{x1, x2, ..., xn}`:`x1`,`x2`,...,`xn`のうち最小のものを、`x1`に代入する /// - 代入があったとき、`true`を返す #[macro_export] macro_rules! chmin { ( $a:expr, $b:expr $(,)* ) => {{ if $a > $b { $a = $b; true } else { false } }}; ( $a:expr, $b:expr, $c:expr $(,$other:expr)* $(,)* ) => {{ chmin! { $a, ($b).min($c) $(,$other)* } }}; } }