結果
問題 | No.2564 衝突予測 |
ユーザー | yumekawayui |
提出日時 | 2023-12-02 15:18:09 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,472 bytes |
コンパイル時間 | 6,524 ms |
コンパイル使用メモリ | 189,056 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 18:25:30 |
合計ジャッジ時間 | 7,952 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 56 ms
5,376 KB |
testcase_04 | AC | 57 ms
5,376 KB |
testcase_05 | AC | 56 ms
5,376 KB |
testcase_06 | AC | 56 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <bits/extc++.h> using namespace std; using ld = long double; const vector<int> dx = {0, 0, 1, -1}; const vector<int> dy = {1, -1, 0, 0}; #define vec vector #define int long long #define double long double //cout<<setprecision(10)<<fixed<<.. #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repp(i, x, n) for (int i = x; i < (int)(n); i++) #define pii pair<int,int> #define pq priority_queue #define all(V) begin(V),end(V) #define printpair(p) cout<<p.first<<" "<<p.second<<"\n" #define tple tuple<int,int,int> template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; } template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; } #define mend(a,b) G[a].push_back(b) signed main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int t;cin>>t; rep(i,t){ int a,b; char c; cin>>a>>b>>c; int x,y; char z; cin>>x>>y>>z; if(x==a&&(y>b&&z=='D'&&c=='U')){ cout<<"Yes\n";continue; } if(x==a&&(b>y&&c=='D'&&z=='U')){ cout<<"Yes\n";continue; } if(y==b&&(x>a&&z=='L'&&c=='R')){ cout<<"Yes\n";continue; } if(y==b&&(x<a&&z=='R'&&c=='L')){ cout<<"Yes\n";continue; } if(abs(a-x)==abs(b-y)){ if(a>x&&b>y){ if(c=='L'&&z=='U'){ cout<<"Yes\n";continue; } if(c=='D'&&z=='R'){ cout<<"Yes\n";continue; } } if(a>x&&b<y){ if(c=='U'&&z=='R'){ cout<<"Yes\n";continue; } if(c=='L'&&z=='D'){ cout<<"Yes\n";continue; } } if(a<x&&b<y){ if(c=='U'&&z=='L'){ cout<<"Yes\n";continue; } if(c=='R'&&z=='D'){ cout<<"Yes\n";continue; } } if(a<x&&b>y){ if(c=='U'&&z=='R'){ cout<<"Yes\n";continue; } if(c=='L'&&z=='D'){ cout<<"Yes\n";continue; } } } cout<<"No\n"; } }