結果

問題 No.2564 衝突予測
ユーザー Mikan04yMikan04y
提出日時 2023-12-02 16:24:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,844 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 200,980 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 20:15:26
合計ジャッジ時間 6,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 329 ms
5,376 KB
testcase_04 AC 328 ms
5,376 KB
testcase_05 AC 326 ms
5,376 KB
testcase_06 AC 327 ms
5,376 KB
testcase_07 AC 324 ms
5,376 KB
testcase_08 AC 325 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int dx[4] = {1, 0, -1, 0};
const int dy[4] = {0, 1, 0, -1};

int index(char dir)
{
    if (dir == 'R')
        return 0;
    else if (dir == 'U')
        return 1;
    else if (dir == 'L')
        return 2;
    else
        return 3;
}

int main()
{
    int T;
    cin >> T;
    for (int t = 0; t < T; t++)
    {
        // input
        int x1, x2, y1, y2;
        char d1, d2;
        cin >> x1 >> y1 >> d1;
        cin >> x2 >> y2 >> d2;

        // main
        string ans;
        if (x1 == x2)
        {
            if (y1 < y2 && d1 == 'U' && d2 == 'D' && abs(y1 - y2) % 2 == 0)
                ans = "Yes";
            else if (y1 > y2 && d1 == 'D' && d2 == 'U' && abs(y1 - y2) % 2 == 0)
                ans = "Yes";
            else
                ans = "No";
        }
        else if (y1 == y2)
        {
            if (x1 < x2 && d1 == 'R' && d2 == 'L')
                ans = "Yes";
            else if (x1 > x2 && d1 == 'L' && d2 == 'R')
                ans = "Yes";
            else
                ans = "No";
        }
        else
        {
            int d_idx1 = index(d1), d_idx2 = index(d2);
            int tx = abs(x1 - x2), ty = abs(y1 - y2);
            if (tx == ty)
            {
                int cx1, cx2, cy1, cy2;
                cx1 = x1 + tx * dx[d_idx1];
                cy1 = y1 + ty * dy[d_idx1];
                cx2 = x2 + tx * dx[d_idx2];
                cy2 = y2 + ty * dy[d_idx2];
                // cout << cx1 << ", " << cy1 << endl;
                // cout << cx2 << ", " << cy2 << endl;
                if (cx1 == cx2 && cy1 == cy2)
                    ans = "Yes";
                else
                    ans = "No";
            }
            else
                ans = "No";
        }

        // output
        cout << ans << endl;
    }
}
0