結果

問題 No.2564 衝突予測
ユーザー atcoder8atcoder8
提出日時 2023-12-02 16:16:24
言語 Rust
(1.77.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,844 bytes
コンパイル時間 1,527 ms
コンパイル使用メモリ 169,756 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2023-12-02 16:16:28
合計ジャッジ時間 4,098 ms
ジャッジサーバーID
(参考情報)
judge10 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,676 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 AC 158 ms
6,676 KB
testcase_04 AC 156 ms
6,676 KB
testcase_05 AC 163 ms
6,676 KB
testcase_06 AC 159 ms
6,676 KB
testcase_07 AC 157 ms
6,676 KB
testcase_08 AC 156 ms
6,676 KB
testcase_09 AC 160 ms
6,676 KB
testcase_10 AC 154 ms
6,676 KB
testcase_11 AC 158 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let t = {
        let mut line = String::new();
        std::io::stdin().read_line(&mut line).unwrap();
        line.trim().parse::<usize>().unwrap()
    };

    for _ in 0..t {
        println!("{}", if solve() { "Yes" } else { "No" });
    }
}

fn solve() -> bool {
    let (x1, y1, d1) = {
        let mut line = String::new();
        std::io::stdin().read_line(&mut line).unwrap();
        let mut iter = line.split_whitespace();
        (
            iter.next().unwrap().parse::<i64>().unwrap(),
            iter.next().unwrap().parse::<i64>().unwrap(),
            iter.next().unwrap().parse::<char>().unwrap(),
        )
    };
    let (x2, y2, d2) = {
        let mut line = String::new();
        std::io::stdin().read_line(&mut line).unwrap();
        let mut iter = line.split_whitespace();
        (
            iter.next().unwrap().parse::<i64>().unwrap(),
            iter.next().unwrap().parse::<i64>().unwrap(),
            iter.next().unwrap().parse::<char>().unwrap(),
        )
    };

    let (vx1, vy1) = velocity(d1);
    let (vx2, vy2) = velocity(d2);

    if x1 != x2 && vx1 == vx2 {
        return false;
    }

    if y1 != y2 && vy1 == vy2 {
        return false;
    }

    match (vx1 == vx2, vy1 == vy2) {
        (true, true) => unreachable!(),
        (true, false) => y1 != y2 && (y2 > y1) == (vy1 > vy2),
        (false, true) => x1 != x2 && (x2 > x1) == (vx1 > vx2),
        (false, false) => {
            if x1 == x2 || (x2 > x1) != (vx1 > vx2) || y1 == y2 || (y2 > y1) != (vy1 > vy2) {
                return false;
            }

            (x2 - x1) * (vy1 - vy2) == (y2 - y1) * (vx1 - vx2)
        }
    }
}

fn velocity(d: char) -> (i64, i64) {
    match d {
        'R' => (1, 0),
        'L' => (-1, 0),
        'U' => (0, 1),
        'D' => (0, -1),
        _ => panic!(),
    }
}
0