結果

問題 No.2564 衝突予測
ユーザー may17may17
提出日時 2023-12-02 16:26:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,250 bytes
コンパイル時間 2,435 ms
コンパイル使用メモリ 208,236 KB
実行使用メモリ 8,008 KB
最終ジャッジ日時 2024-09-26 20:18:00
合計ジャッジ時間 6,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
//#include<atcoder/all>
using namespace std;
//using namespace atcoder;
using ll = long long;
const int INF = 1000000007;
//const ll mod = 998244353;
int t, x[100009][5], y[100009][5];
char d[100009][5];
int main() {
	cin >> t;
	for (int i = 1; i <= t; i++) {
		for (int j = 1; j <= 2; j++)cin >> x[i][j] >> y[i][j] >> d[i][j];
	}
	for (int i = 1; i <= t; i++) {
		if (d[i][1] == d[i][2]) {
			cout << "No" << endl;
			continue;
		}
		set<char>S;
		S.insert(d[i][1]);
		S.insert(d[i][2]);
		if ((S.count('R') == 1 && S.count('L') == 1) || (S.count('U') == 1 && S.count('D') == 1)) {
			if (S.count('R') == 1) {
				if (y[i][1] == y[i][2])cout << "Yes" << endl;
				else cout << "No" << endl;
			}
			if (S.count('U') == 1) {
				if (x[i][1] == x[i][2])cout << "Yes" << endl;
				else cout << "No" << endl;
			}
			continue;
		}
		if (d[i][1] == 'R' || d[i][1] == 'L') {
			swap(d[i][1], d[i][2]);
			swap(x[i][1], x[i][2]);
			swap(y[i][1], y[i][2]);
		}
		int x1 = x[i][1], y2 = y[i][2];
		int d1 = 0, d2 = 0;
		if (d[i][1] == 'U')d1 = y2 - y[i][1];
		else d1 = y[i][1] - y2;
		if (d[i][2] == 'L')d2 = x[i][2] - x1;
		else d2 = x1 - x[i][2];
		if (d1 == d2 && d1 > 0)cout << "Yes" << endl;
		else cout << "No" << endl;
	}
}
0