結果

問題 No.2564 衝突予測
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-17 01:13:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 200,664 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-17 01:13:42
合計ジャッジ時間 5,667 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 187 ms
6,820 KB
testcase_04 AC 185 ms
6,820 KB
testcase_05 AC 187 ms
6,820 KB
testcase_06 AC 188 ms
6,816 KB
testcase_07 AC 212 ms
6,816 KB
testcase_08 AC 189 ms
6,820 KB
testcase_09 AC 186 ms
6,816 KB
testcase_10 AC 187 ms
6,816 KB
testcase_11 AC 214 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

void NO(){cout << "No" << endl;}
void YES(){cout << "Yes" << endl;}

void solve(){
    char c1, c2;
    int x1, y1, x2, y2;
    cin >> x1 >> y1 >> c1 >> x2 >> y2 >> c2;
    if (c1 > c2){
        swap(x1, x2);
        swap(y1, y2);
        swap(c1, c2);
    }
    if (c1 == 'D' && c2 == 'U' && x1 == x2 && y1 > y2) YES();
    else if (c1 == 'L' && c2 == 'R' && y1 == y2 && x1 > x2) YES();
    else if (c1 == 'D' && c2 == 'R' && x1 > x2 && y1-y2 == x1-x2) YES();
    else if (c1 == 'D' && c2 == 'L' && x1 < x2 && y1-y2 == x2-x1) YES();
    else if (c1 == 'L' && c2 == 'U' && x1 > x2 && y1-y2 == x1-x2) YES();
    else if (c1 == 'R' && c2 == 'U' && x1 < x2 && y1-y2 == x2-x1) YES();
    else NO();
}

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    int T;
    cin >> T;
    while(T--){
        solve();
    }

    return 0;
}
0