結果
問題 | No.199 星を描こう |
ユーザー | 37zigen |
提出日時 | 2016-10-26 13:29:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 131 ms / 2,000 ms |
コード長 | 2,120 bytes |
コンパイル時間 | 4,686 ms |
コンパイル使用メモリ | 88,568 KB |
実行使用メモリ | 56,072 KB |
最終ジャッジ日時 | 2024-06-09 13:59:35 |
合計ジャッジ時間 | 7,466 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
54,252 KB |
testcase_01 | AC | 124 ms
54,132 KB |
testcase_02 | AC | 119 ms
53,960 KB |
testcase_03 | AC | 124 ms
54,180 KB |
testcase_04 | AC | 127 ms
54,132 KB |
testcase_05 | AC | 127 ms
54,328 KB |
testcase_06 | AC | 124 ms
54,208 KB |
testcase_07 | AC | 123 ms
54,300 KB |
testcase_08 | AC | 127 ms
56,072 KB |
testcase_09 | AC | 131 ms
54,268 KB |
testcase_10 | AC | 125 ms
54,296 KB |
testcase_11 | AC | 124 ms
54,104 KB |
testcase_12 | AC | 128 ms
54,016 KB |
testcase_13 | AC | 110 ms
53,516 KB |
testcase_14 | AC | 122 ms
53,668 KB |
testcase_15 | AC | 120 ms
53,576 KB |
testcase_16 | AC | 122 ms
54,004 KB |
testcase_17 | AC | 121 ms
53,588 KB |
testcase_18 | AC | 110 ms
53,536 KB |
testcase_19 | AC | 126 ms
53,984 KB |
testcase_20 | AC | 125 ms
54,296 KB |
testcase_21 | AC | 122 ms
54,356 KB |
testcase_22 | AC | 122 ms
54,408 KB |
testcase_23 | AC | 110 ms
53,356 KB |
testcase_24 | AC | 110 ms
53,508 KB |
testcase_25 | AC | 122 ms
53,476 KB |
testcase_26 | AC | 110 ms
53,748 KB |
testcase_27 | AC | 125 ms
54,076 KB |
ソースコード
package contest678; import java.awt.geom.Line2D; import java.util.*; public class F { public static void main(String[] args) { new F().run(); } void run() { solver(); } void solver() { // Scanner sc = new Scanner(System.in); // int n = sc.nextInt(); // int[][] qs = new int[n][]; // for (int Q = 0; Q < n; ++Q) { // int t = sc.nextInt();// 0:add,1:removek,2:calc // if (t == 1) { // qs[Q] = new int[] { t, sc.nextInt(), sc.nextInt(), Q }; // } else if (t == 2) { // qs[Q] = new int[] { t, sc.nextInt() - 1 }; // } else if (t == 3) { // qs[Q] = new int[] { t, sc.nextInt() }; // } // } Scanner sc = new Scanner(System.in); double[] x = new double[5]; double[] y = new double[5]; for (int i = 0; i < 5; i++) { x[i] = sc.nextDouble(); y[i] = sc.nextDouble(); } int[] d = convexHull(x, y); if (d.length == 5) { System.out.println("YES"); } else { System.out.println("NO"); } } int[] convexHull(final double[] x, final double[] y) { int n = x.length; Integer[] ord = new Integer[n]; for (int i = 0; i < n; ++i) { ord[i] = i; } Arrays.sort(ord, new Comparator<Integer>() { @Override public int compare(Integer o1, Integer o2) { if (x[o1] != x[o2]) { return Double.compare(x[o1], x[o2]); } else { return Double.compare(y[o1], y[o2]); } } }); int[] ret = new int[n + 1]; int p = 0; for (int i = 0; i < n; ++i) { if (p >= 1 && x[ord[i]] == x[ret[p - 1]] && y[ord[i]] == y[ret[p - 1]]) continue; while (p >= 2 && Line2D.relativeCCW(x[ret[p - 2]], y[ret[p - 2]], x[ret[p - 1]], y[ret[p - 1]], x[ord[i]], y[ord[i]]) >= 0) p--; ret[p++] = ord[i]; } int inf = p + 1; for (int i = n - 2; i >= 0; --i) { if (x[ret[p - 1]] == x[ord[i]] && y[ret[p - 1]] == y[ord[i]]) continue; while (p >= inf && Line2D.relativeCCW(x[ret[p - 2]], y[ret[p - 2]], x[ret[p - 1]], y[ret[p - 1]], x[ord[i]], y[ord[i]]) >= 0) p--; ret[p++] = ord[i]; } return Arrays.copyOf(ret, p - 1); } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }