結果
問題 | No.245 貫け! |
ユーザー | titia |
提出日時 | 2022-08-11 00:56:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 2,142 ms / 5,000 ms |
コード長 | 804 bytes |
コンパイル時間 | 80 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-21 10:21:25 |
合計ジャッジ時間 | 19,366 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,752 KB |
testcase_01 | AC | 27 ms
10,624 KB |
testcase_02 | AC | 26 ms
10,752 KB |
testcase_03 | AC | 27 ms
10,752 KB |
testcase_04 | AC | 28 ms
10,752 KB |
testcase_05 | AC | 27 ms
10,752 KB |
testcase_06 | AC | 27 ms
10,880 KB |
testcase_07 | AC | 27 ms
10,624 KB |
testcase_08 | AC | 48 ms
10,752 KB |
testcase_09 | AC | 150 ms
10,752 KB |
testcase_10 | AC | 203 ms
10,752 KB |
testcase_11 | AC | 764 ms
10,624 KB |
testcase_12 | AC | 2,129 ms
10,752 KB |
testcase_13 | AC | 2,089 ms
10,752 KB |
testcase_14 | AC | 2,098 ms
10,752 KB |
testcase_15 | AC | 2,123 ms
10,752 KB |
testcase_16 | AC | 2,110 ms
10,624 KB |
testcase_17 | AC | 2,122 ms
10,880 KB |
testcase_18 | AC | 2,131 ms
10,752 KB |
testcase_19 | AC | 2,142 ms
10,752 KB |
ソースコード
# 交差判定には外積を使うんだったよなー、と思って解説を見た。 N=int(input()) A=[tuple(map(int,input().split())) for i in range(N)] def outer_product(x,y,z,w): return x*w-y*z ANS=0 for x,y,_,_ in A: for _,_,z,w in A: if x==z and y==w: continue score=0 for p,q,r,s in A: if outer_product(z-x,w-y,p-x,q-y)*outer_product(z-x,w-y,r-x,s-y)<=0: score+=1 ANS=max(ANS,score) for x,y,_,_ in A: for z,w,_,_ in A: if x==z and y==w: continue score=0 for p,q,r,s in A: if outer_product(z-x,w-y,p-x,q-y)*outer_product(z-x,w-y,r-x,s-y)<=0: score+=1 ANS=max(ANS,score) print(ANS)