結果
問題 | No.199 星を描こう |
ユーザー | Grenache |
提出日時 | 2016-06-06 22:48:13 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 122 ms / 2,000 ms |
コード長 | 2,060 bytes |
コンパイル時間 | 3,298 ms |
コンパイル使用メモリ | 81,176 KB |
実行使用メモリ | 54,092 KB |
最終ジャッジ日時 | 2024-06-09 13:56:46 |
合計ジャッジ時間 | 7,261 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
54,092 KB |
testcase_01 | AC | 118 ms
52,864 KB |
testcase_02 | AC | 114 ms
53,932 KB |
testcase_03 | AC | 104 ms
53,312 KB |
testcase_04 | AC | 102 ms
52,776 KB |
testcase_05 | AC | 110 ms
53,596 KB |
testcase_06 | AC | 115 ms
53,940 KB |
testcase_07 | AC | 104 ms
52,708 KB |
testcase_08 | AC | 103 ms
52,724 KB |
testcase_09 | AC | 101 ms
52,904 KB |
testcase_10 | AC | 113 ms
53,952 KB |
testcase_11 | AC | 112 ms
53,720 KB |
testcase_12 | AC | 112 ms
53,896 KB |
testcase_13 | AC | 115 ms
53,184 KB |
testcase_14 | AC | 113 ms
53,832 KB |
testcase_15 | AC | 111 ms
53,820 KB |
testcase_16 | AC | 117 ms
54,040 KB |
testcase_17 | AC | 115 ms
54,040 KB |
testcase_18 | AC | 98 ms
52,512 KB |
testcase_19 | AC | 122 ms
53,924 KB |
testcase_20 | AC | 110 ms
53,928 KB |
testcase_21 | AC | 113 ms
53,888 KB |
testcase_22 | AC | 119 ms
53,764 KB |
testcase_23 | AC | 104 ms
52,972 KB |
testcase_24 | AC | 103 ms
52,848 KB |
testcase_25 | AC | 108 ms
52,832 KB |
testcase_26 | AC | 118 ms
53,980 KB |
testcase_27 | AC | 118 ms
53,848 KB |
ソースコード
import java.util.*; public class Main_yukicoder199 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); List<Pair> xy = new ArrayList<>(); for (int i = 0; i < 5; i++) { xy.add(new Pair(sc.nextInt(), sc.nextInt())); } Collections.sort(xy); List<Pair> ch = new ArrayList<>(); for (int i = 0; i < xy.size(); i++) { while (ch.size() > 1 && (Geom.cross(ch.get(ch.size() - 1).a - ch.get(ch.size() - 2).a, ch.get(ch.size() - 1).b - ch.get(ch.size() - 2).b, xy.get(i).a - ch.get(ch.size() - 1).a, xy.get(i).b - ch.get(ch.size() - 1).b)) <= 0) { ch.remove(ch.size() - 1); } ch.add(xy.get(i)); } int t = ch.size(); for (int i = xy.size() - 1; i >= 0; i--) { while (ch.size() > t && (Geom.cross(ch.get(ch.size() - 1).a - ch.get(ch.size() - 2).a, ch.get(ch.size() - 1).b - ch.get(ch.size() - 2).b, xy.get(i).a - ch.get(ch.size() - 1).a, xy.get(i).b - ch.get(ch.size() - 1).b)) <= 0) { ch.remove(ch.size() - 1); } ch.add(xy.get(i)); } if (ch.size() == 6) { System.out.println("YES"); } else { System.out.println("NO"); } sc.close(); } private static class Pair implements Comparable<Pair> { int a; int b; Pair(int a, int b) { this.a = a; this.b = b; } @Override public int compareTo(Pair o) { if (this.a == o.a) { return Integer.compare(this.b, o.b); } return Integer.compare(this.a, o.a); } @Override public String toString() { return "[" + Integer.toString(a) + " " + Integer.toString(b) + "]"; } } @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; } } }