結果
問題 |
No.2628 Shrinkage
|
ユーザー |
|
提出日時 | 2024-02-16 23:51:03 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 805 bytes |
コンパイル時間 | 1,728 ms |
コンパイル使用メモリ | 193,048 KB |
最終ジャッジ日時 | 2025-02-19 15:09:04 |
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 27 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; using ull = unsigned long long; void solve(); int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int test_case; cin>>test_case; while (test_case--){ solve(); } } void solve(){ int N; cin>>N; array<ll,2> S1,S2,G1,G2; cin>>S1[0]>>S1[1]; cin>>S2[0]>>S2[1]; cin>>G1[0]>>G1[1]; cin>>G2[0]>>G2[1]; if(S1==S2){ cout<<(G1==G2?"Yes\n":"No\n"); return; } if(S1==G1&&S2==G2){ cout<<"Yes\n"; return; } __int128_t a=(S1[0]-S2[0])*(G1[0]-G2[0])+(S1[1]-S2[1])*(G1[1]-G2[1]), l1=(S1[0]-S2[0])*(S1[0]-S2[0])+(S1[1]-S2[1])*(S1[1]-S2[1]), l2=(G1[0]-G2[0])*(G1[0]-G2[0])+(G1[1]-G2[1])*(G1[1]-G2[1]); if(a>=0&&a*a==l1*l2){ cout<<(l1>l2?"Yes\n":"No\n"); }else{ cout<<"No\n"; } }