結果
問題 | No.1650 Moving Coins |
ユーザー | phspls |
提出日時 | 2022-10-23 16:31:45 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 273 ms / 2,000 ms |
コード長 | 2,187 bytes |
コンパイル時間 | 12,029 ms |
コンパイル使用メモリ | 405,124 KB |
実行使用メモリ | 20,448 KB |
最終ジャッジ日時 | 2024-07-02 08:09:25 |
合計ジャッジ時間 | 22,748 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 240 ms
6,944 KB |
testcase_04 | AC | 173 ms
6,940 KB |
testcase_05 | AC | 213 ms
6,944 KB |
testcase_06 | AC | 255 ms
6,944 KB |
testcase_07 | AC | 242 ms
6,940 KB |
testcase_08 | AC | 241 ms
12,288 KB |
testcase_09 | AC | 251 ms
10,880 KB |
testcase_10 | AC | 252 ms
12,584 KB |
testcase_11 | AC | 270 ms
11,904 KB |
testcase_12 | AC | 243 ms
8,576 KB |
testcase_13 | AC | 262 ms
8,704 KB |
testcase_14 | AC | 253 ms
11,136 KB |
testcase_15 | AC | 242 ms
8,064 KB |
testcase_16 | AC | 253 ms
13,184 KB |
testcase_17 | AC | 240 ms
13,180 KB |
testcase_18 | AC | 263 ms
15,732 KB |
testcase_19 | AC | 273 ms
15,612 KB |
testcase_20 | AC | 253 ms
15,712 KB |
testcase_21 | AC | 256 ms
15,812 KB |
testcase_22 | AC | 268 ms
20,448 KB |
testcase_23 | AC | 263 ms
20,448 KB |
testcase_24 | AC | 231 ms
6,940 KB |
testcase_25 | AC | 244 ms
6,940 KB |
testcase_26 | AC | 26 ms
17,432 KB |
ソースコード
use std::collections::VecDeque; fn main() { let mut n = String::new(); std::io::stdin().read_line(&mut n).ok(); let n: usize = n.trim().parse().unwrap(); let mut a = String::new(); std::io::stdin().read_line(&mut a).ok(); let mut a: Vec<usize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let mut b = String::new(); std::io::stdin().read_line(&mut b).ok(); let b: Vec<usize> = b.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let mut checked = vec![false; n]; let mut queue = VecDeque::new(); for i in 0..n { if i == 0 { if a[0] >= b[0] || 1 == n || b[0] < a[1] { queue.push_back((a[0], b[0], 0)); checked[i] = true; } } else if i == n-1 { if a[i] <= b[i] || a[i-1] < b[i] { queue.push_back((a[i], b[i], i)); checked[i] = true; } } else { if a[i-1] < b[i] && b[i] < a[i+1] { queue.push_back((a[i], b[i], i)); checked[i] = true; } } } let mut operates = Vec::with_capacity(n); while let Some((start, end, idx)) = queue.pop_front() { operates.push((start, end, idx)); a[idx] = end; if idx > 0 && !checked[idx-1] { if b[idx-1] < a[idx] && (idx == 1 || a[idx-2] < b[idx-1]) { queue.push_back((a[idx-1], b[idx-1], idx-1)); checked[idx-1] = true; } } if idx+1 < n && !checked[idx+1] { if a[idx] < b[idx+1] && (idx+2 == n || b[idx+1] < a[idx+2]) { queue.push_back((a[idx+1], b[idx+1], idx+1)); checked[idx+1] = true; } } } let mut result = vec![]; for &(start, end, idx) in operates.iter() { for _ in 0..start.max(end)-start.min(end) { if start < end { result.push((idx+1, 'R')); } else { result.push((idx+1, 'L')) } } } println!("{}", result.len()); for &(i, c) in result.iter() { println!("{} {}", i, c); } }