結果
問題 | No.2708 Jewel holder |
ユーザー | naut3 |
提出日時 | 2024-03-31 13:40:28 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 2,749 bytes |
コンパイル時間 | 13,590 ms |
コンパイル使用メモリ | 402,208 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 18:13:47 |
合計ジャッジ時間 | 13,409 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 0 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 6 ms
5,248 KB |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 2 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 H = input!(usize); let W = input!(usize); let A = (0..H) .map(|_| input!(String).chars().collect::<Vec<_>>()) .collect::<Vec<_>>(); let mut ans = 0_usize; for s in 0..1usize << (H + W - 2) { let mut hcnt = 0; let mut wcnt = 0; for i in 0..H + W - 2 { if (s >> i) & 1 == 1 { hcnt += 1; } else { wcnt += 1; } } if !(hcnt == H - 1 && wcnt == W - 1) { continue; } let mut jewelry = 1; let mut ny = 0; let mut nx = 0; let mut isok = true; for i in 0..H + W - 2 { if (s >> i) & 1 == 1 { ny += 1; if A[ny][nx] == 'o' { jewelry += 1; } else if A[ny][nx] == 'x' { jewelry -= 1; } else { isok = false; } } else { nx += 1; if A[ny][nx] == 'o' { jewelry += 1; } else if A[ny][nx] == 'x' { jewelry -= 1; } else { isok = false; } } if jewelry < 0 { isok = false; } } if isok { ans += 1; } } writeln!(out, "{}", ans); } 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()) } } } }