結果

問題 No.2564 衝突予測
ユーザー ku_senjanku_senjan
提出日時 2023-12-02 15:17:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 2,134 bytes
コンパイル時間 6,746 ms
コンパイル使用メモリ 300,796 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2023-12-02 15:17:19
合計ジャッジ時間 8,465 ms
ジャッジサーバーID
(参考情報)
judge10 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#ifdef SENJAN
#include <ku/debug.hpp>
#else
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#define debug(...)
#endif
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ull=unsigned long long;
using ld=long double;
using graph=vector<vector<int>>;
template<class T> using wgraph=vector<vector<pair<int,T>>>;
template<class T> using min_priority_queue=priority_queue<T,vector<T>,greater<T>>;
constexpr int INF32=INT_MAX/2;
constexpr ll INF64=1LL<<60;
constexpr ld PI=3.14159265358979323846;
constexpr int dx[]={0,0,-1,1,-1,-1,1,1},dy[]={-1,1,0,0,-1,1,-1,1};
#define rep(i,s,n) for(ll i=(ll)(s);i<(ll)(n);i++)
#define rrep(i,s,n) for(ll i=(ll)(s);i>=(ll)(n);i--)
template<class T> inline bool chmax(T &a,T b){return a<b?a=b,true:false;}
template<class T> inline bool chmin(T &a,T b){return a>b?a=b,true:false;}
void _main();
int main(){cin.tie(0)->sync_with_stdio(0);cout<<fixed<<setprecision(16);_main();}

struct car{
	ll x, y;
	char d;
};

bool solve(){
	car a, b;
	cin >> a.x >> a.y >> a.d;
	cin >> b.x >> b.y >> b.d;

	if(a.d==b.d) return false;

	if(a.x==b.x){
		if(a.y>b.y) swap(a, b);
		if(a.d=='U' && b.d=='D') return true;
		return false;
	}
	if(a.y==b.y){
		if(a.x>b.x) swap(a, b);
		if(a.d=='R' && b.d=='L') return true;
		return false;
	}

	if(a.d>b.d) swap(a, b);
	if(a.d=='D' && b.d=='U') return false;
	if(a.d=='L' && b.d=='R') return false;

	if(a.d=='L' || a.d=='R') swap(a, b);

	if(a.d=='D'){
		if(a.y<=b.y) return false;
		if(b.d=='R'){
			if(a.x<=b.x) return false;
			if(a.x-b.x == a.y-b.y) return true;
			return false;
		}
		if(b.d=='L'){
			if(a.x>=b.x) return false;
			if(b.x-a.x == a.y-b.y) return true;
			return false;
		}
	}
	if(a.d=='U'){
		if(a.y>=b.y) return false;
		if(b.d=='R'){
			if(a.x<=b.x) return false;
			if(a.x-b.x == b.y-a.y) return true;
			return false;
		}
		if(b.d=='L'){
			if(a.x>=b.x) return false;
			if(b.x-a.x == b.y-a.y) return true;
			return false;
		}
	}
	return false;
}

void _main(){
	int T; cin >> T;
	while(T--){
		cout << (solve()?"Yes":"No") << endl;
	}
}
0