結果
問題 | No.245 貫け! |
ユーザー | Grenache |
提出日時 | 2015-07-19 10:36:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,316 bytes |
コンパイル時間 | 4,250 ms |
コンパイル使用メモリ | 77,652 KB |
実行使用メモリ | 42,912 KB |
最終ジャッジ日時 | 2024-07-08 10:21:07 |
合計ジャッジ時間 | 9,174 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
41,572 KB |
testcase_01 | AC | 136 ms
41,452 KB |
testcase_02 | AC | 134 ms
41,500 KB |
testcase_03 | AC | 134 ms
41,252 KB |
testcase_04 | AC | 136 ms
41,536 KB |
testcase_05 | AC | 135 ms
41,244 KB |
testcase_06 | AC | 143 ms
41,784 KB |
testcase_07 | AC | 139 ms
41,500 KB |
testcase_08 | AC | 149 ms
41,676 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 233 ms
42,728 KB |
testcase_16 | WA | - |
testcase_17 | AC | 249 ms
42,752 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
import java.util.Scanner; public class Main_yukicoder245 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[][] a = new int[4][n]; for (int i = 0; i < n; i++) { for (int j = 0; j < 4; j++) { a[j][i] = sc.nextInt(); } } int max = 0; for (int i = 0; i < n; i++) { for (int j = i; j < n; j ++) { int tmp = 0; int tmp1 = 0; int tmp2 = 0; int tmp3 = 0; for (int k = 0; k < n; k++) { if (Geom.lineIntersect(a[0][i], a[1][i], a[0][j], a[1][j], a[0][k], a[1][k], a[2][k], a[3][k])) { tmp++; } if (Geom.lineIntersect(a[0][i], a[1][i], a[2][j], a[3][j], a[0][k], a[1][k], a[2][k], a[3][k])) { tmp1++; } if (Geom.lineIntersect(a[2][i], a[3][i], a[0][j], a[1][j], a[0][k], a[1][k], a[2][k], a[3][k])) { tmp2++; } if (Geom.lineIntersect(a[2][i], a[3][i], a[2][j], a[3][j], a[0][k], a[1][k], a[2][k], a[3][k])) { tmp3++; } } max = Math.max(max, tmp); max = Math.max(max, tmp1); max = Math.max(max, tmp2); max = Math.max(max, tmp3); } } System.out.println(max); sc.close(); } @SuppressWarnings("unused") private static class Geom { static int dot(int xa, int ya, int xb, int yb) { return xa * xb + ya * yb; } static int cross(int xa, int ya, int xb, int yb) { return xa * yb - xb * ya; } static int sumofsquare(int xa, int ya) { return xa * xa + ya * ya; } static boolean lineIntersect(int xa, int ya, int xb, int yb, int xc, int yc, int xd, int yd) { int abx = xb - xa; int aby = yb - ya; int acx = xc - xa; int acy = yc - ya; int adx = xd - xa; int ady = yd - ya; int cdx = xd - xc; int cdy = yd - yc; int cax = xa - xc; int cay = ya - yc; int cbx = xb - xc; int cby = yb - yc; return ((long)cross(abx, aby, acx, acy) * cross(abx, aby, adx, ady) <= 0) && ((long)cross(cdx, cdy, cax, cay) * cross(cdx, cdy, cbx, cby) <= 0); } } }