結果

問題 No.199 星を描こう
ユーザー 37zigen37zigen
提出日時 2016-08-25 16:25:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,578 bytes
コンパイル時間 3,432 ms
コンパイル使用メモリ 89,316 KB
実行使用メモリ 54,728 KB
最終ジャッジ日時 2024-06-09 13:57:50
合計ジャッジ時間 7,866 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,264 KB
testcase_01 AC 124 ms
53,516 KB
testcase_02 AC 136 ms
54,236 KB
testcase_03 AC 128 ms
54,420 KB
testcase_04 AC 117 ms
53,756 KB
testcase_05 AC 125 ms
54,528 KB
testcase_06 AC 123 ms
54,136 KB
testcase_07 AC 130 ms
54,488 KB
testcase_08 AC 119 ms
54,332 KB
testcase_09 AC 130 ms
54,508 KB
testcase_10 AC 127 ms
54,376 KB
testcase_11 AC 128 ms
54,596 KB
testcase_12 AC 125 ms
53,652 KB
testcase_13 AC 130 ms
54,728 KB
testcase_14 AC 126 ms
54,632 KB
testcase_15 AC 128 ms
54,264 KB
testcase_16 AC 123 ms
54,320 KB
testcase_17 AC 125 ms
54,192 KB
testcase_18 AC 113 ms
53,616 KB
testcase_19 AC 116 ms
53,808 KB
testcase_20 AC 131 ms
54,232 KB
testcase_21 AC 111 ms
53,160 KB
testcase_22 AC 128 ms
54,364 KB
testcase_23 AC 126 ms
54,236 KB
testcase_24 AC 127 ms
54,200 KB
testcase_25 AC 128 ms
54,232 KB
testcase_26 AC 127 ms
54,196 KB
testcase_27 AC 124 ms
53,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No100番台;

import java.awt.geom.Line2D;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

public class Q199 {
	public static void main(String[] args) {
		new Q199().solver();
	}

	void solver() {
		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");
		}
	}
	public static 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>(){
			public int compare(Integer a, Integer b){
				if(x[a] != x[b])return x[a] < x[b] ? -1 : 1;
				if(y[a] != y[b])return y[a] < y[b] ? -1 : 1;
				return 0;
			}
		});
		
		int[] ret = new int[n + 1];
		int p = 0;
		for(int i = 0;i < n;i++){
			if(p >= 1 && x[ret[p-1]] == x[ord[i]] && y[ret[p-1]] == y[ord[i]])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]]) == 1)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]]) == 1)p--;
			ret[p++] = ord[i];
		}
		
		return Arrays.copyOf(ret, p - 1);
	}

}
0