結果

問題 No.2628 Shrinkage
ユーザー Nzt3Nzt3
提出日時 2024-02-16 23:51:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 805 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 202,156 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-02-16 23:51:49
合計ジャッジ時間 3,375 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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";
  }
}
0