結果
問題 | No.1588 Connection |
ユーザー | ziita |
提出日時 | 2021-09-08 12:15:02 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,874 bytes |
コンパイル時間 | 17,475 ms |
コンパイル使用メモリ | 378,784 KB |
実行使用メモリ | 33,712 KB |
最終ジャッジ日時 | 2024-06-07 13:10:38 |
合計ジャッジ時間 | 21,665 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#![allow(unused_imports)] #![allow(non_snake_case, unused)] // ---------- begin input macro ---------- // https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 より macro_rules! input { (source = $s:expr, $($r:tt)*) => { let mut iter = $s.split_whitespace(); let mut next = || { iter.next().unwrap() }; input_inner!{next, $($r)*} }; ($($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, chars) => { read_value!($next, String).chars().collect::<Vec<char>>() }; ($next:expr, usize1) => { read_value!($next, usize) - 1 }; ($next:expr, $t:ty) => { $next().parse::<$t>().expect("Parse error") }; } // ---------- end input macro ---------- use std::cmp::*; use std::collections::*; use std::ops::*; use std::marker::*; const INF: i64 = std::i64::MAX/100; const MOD: i64 = 1_000_000_007; // const MOD: i64 = 998_244_353; fn main() { input! { n: usize, m: usize, } let mut seen = vec![vec![false;n];n]; let mut ans = false; dfs(0,0,4,&mut seen,&mut ans); if ans { println!("Yes"); } else { println!("No"); } } fn dfs(x: usize, y: usize, d: usize, mut seen: &mut Vec<Vec<bool>>, mut ans: &mut bool){ let n = seen.len(); if x==n-1 && y==n-1 { *ans = true; return; } let ret = query(x,y); if !ret { return; } seen[x][y] = true; let dir = [(0,1),(1,0),(0,!0),(!0,0)]; for (nd,&(tx,ty)) in dir.iter().enumerate() { if d!=nd && nd%2==d%2 { continue; } let nx = x + tx; let ny = x + ty; if nx>=n || ny>=n { continue; } if seen[nx][ny] { continue; } seen[nx][ny] = true; dfs(nx,ny,nd,&mut seen,&mut ans); } } fn query(x: usize, y: usize) -> bool { println!("{} {}",x+1,y+1); input! { t: String, } if t=="Black" { true } else { false } }