結果

問題 No.1650 Moving Coins
ユーザー fukafukatanifukafukatani
提出日時 2021-08-20 22:02:13
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 1,562 bytes
コンパイル時間 12,746 ms
コンパイル使用メモリ 376,036 KB
実行使用メモリ 23,196 KB
最終ジャッジ日時 2024-10-14 03:41:57
合計ジャッジ時間 22,496 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 238 ms
5,248 KB
testcase_04 AC 180 ms
5,248 KB
testcase_05 AC 217 ms
5,248 KB
testcase_06 AC 255 ms
5,248 KB
testcase_07 AC 257 ms
5,248 KB
testcase_08 AC 252 ms
9,492 KB
testcase_09 AC 259 ms
8,084 KB
testcase_10 AC 258 ms
9,056 KB
testcase_11 AC 258 ms
9,316 KB
testcase_12 AC 260 ms
7,256 KB
testcase_13 AC 250 ms
7,280 KB
testcase_14 AC 258 ms
8,720 KB
testcase_15 AC 256 ms
7,036 KB
testcase_16 AC 261 ms
10,100 KB
testcase_17 AC 256 ms
10,020 KB
testcase_18 AC 271 ms
10,784 KB
testcase_19 AC 266 ms
11,036 KB
testcase_20 AC 276 ms
12,912 KB
testcase_21 AC 272 ms
12,276 KB
testcase_22 AC 290 ms
23,196 KB
testcase_23 AC 292 ms
23,196 KB
testcase_24 AC 252 ms
5,248 KB
testcase_25 AC 248 ms
5,248 KB
testcase_26 AC 25 ms
7,708 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: variable does not need to be mutable
  --> src/main.rs:20:9
   |
20 |     let mut a = read_vec::<i64>();
   |         ----^
   |         |
   |         help: remove this `mut`
   |
   = note: `#[warn(unused_mut)]` on by default

ソースコード

diff #

#![allow(unused_imports)]
use std::cmp::*;
use std::collections::*;
use std::io::Write;
use std::ops::Bound::*;

#[allow(unused_macros)]
macro_rules! debug {
    ($($e:expr),*) => {
        #[cfg(debug_assertions)]
        $({
            let (e, mut err) = (stringify!($e), std::io::stderr());
            writeln!(err, "{} = {:?}", e, $e).unwrap()
        })*
    };
}

fn main() {
    let n = read::<usize>();
    let mut a = read_vec::<i64>();
    let b = read_vec::<i64>();

    let mut opes = vec![vec![0]];
    for i in 1..n {
        if (a[i] <= b[i]) != (a[i - 1] <= b[i - 1]) {
            opes.push(vec![]);
        }
        let last = opes.len() - 1;
        opes[last].push(i);
    }
    debug!(opes);

    let mut answers = vec![];
    for ref mut block in &mut opes {
        if a[block[0]] <= b[block[0]] {
            block.reverse();
        }
        for &i in block.iter() {
            for _ in 0..(a[i] - b[i]).abs() {
                if a[i] <= b[i] {
                    answers.push((i, 'R'));
                } else {
                    answers.push((i, 'L'));
                }
            }
        }
    }

    println!("{}", answers.len());
    for (i, ch) in answers {
        println!("{} {}", i + 1, ch);
    }
}

fn read<T: std::str::FromStr>() -> T {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    s.trim().parse().ok().unwrap()
}

fn read_vec<T: std::str::FromStr>() -> Vec<T> {
    read::<String>()
        .split_whitespace()
        .map(|e| e.parse().ok().unwrap())
        .collect()
}
0