結果

問題 No.2564 衝突予測
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-18 03:56:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 870 bytes
コンパイル時間 2,640 ms
コンパイル使用メモリ 255,120 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-18 03:56:17
合計ジャッジ時間 7,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 347 ms
6,944 KB
testcase_04 AC 359 ms
6,944 KB
testcase_05 AC 354 ms
6,944 KB
testcase_06 AC 367 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ld = long double;
using P = pair<ld, ld>;

int main() {
    int t;
    cin >> t;
    auto calc = [&](P p, P q, P r, P s) {
        auto [a, c] = p;
        auto [b, d] = q;
        auto [e, g] = r;
        auto [f, h] = s;
        if (b == f && d == h) {
            return a == e && c == g;
        } else if (b == f) {
            return a == e;
        } else if (d == h) {
            return c == g;
        } else {
            return ((a - e) / (f - b)) == ((c - g) / (h - d));
        }
    };
    map<char, P> mp;
    mp['R'] = {1, 0};
    mp['L'] = {-1, 0};
    mp['U'] = {0, 1};
    mp['D'] = {0, -1};
    while (t--) {
        ld x1, y1, x2, y2;
        char d1, d2;
        cin >> x1 >> y1 >> d1 >> x2 >> y2 >> d2;
        cout << (calc({x1, y1}, mp[d1], {x2, y2}, mp[d2]) ? "Yes" : "No") << endl;
    }
}
0