結果

問題 No.2355 Unhappy Back Dance
ユーザー ks2mks2m
提出日時 2023-06-16 22:51:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 3,012 ms / 6,000 ms
コード長 1,758 bytes
コンパイル時間 2,783 ms
コンパイル使用メモリ 90,388 KB
実行使用メモリ 71,356 KB
最終ジャッジ日時 2024-06-24 15:49:17
合計ジャッジ時間 55,794 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
54,908 KB
testcase_01 AC 158 ms
54,832 KB
testcase_02 AC 159 ms
55,292 KB
testcase_03 AC 132 ms
54,020 KB
testcase_04 AC 157 ms
54,968 KB
testcase_05 AC 159 ms
54,836 KB
testcase_06 AC 627 ms
63,104 KB
testcase_07 AC 753 ms
63,736 KB
testcase_08 AC 865 ms
64,628 KB
testcase_09 AC 766 ms
63,960 KB
testcase_10 AC 1,943 ms
69,760 KB
testcase_11 AC 1,677 ms
70,324 KB
testcase_12 AC 2,138 ms
65,252 KB
testcase_13 AC 1,915 ms
64,976 KB
testcase_14 AC 1,669 ms
71,356 KB
testcase_15 AC 133 ms
54,144 KB
testcase_16 AC 2,561 ms
67,036 KB
testcase_17 AC 3,012 ms
69,112 KB
testcase_18 AC 2,511 ms
67,464 KB
testcase_19 AC 2,591 ms
67,256 KB
testcase_20 AC 2,831 ms
68,224 KB
testcase_21 AC 1,529 ms
68,072 KB
testcase_22 AC 638 ms
67,244 KB
testcase_23 AC 699 ms
67,544 KB
testcase_24 AC 2,644 ms
68,360 KB
testcase_25 AC 1,813 ms
68,584 KB
testcase_26 AC 1,647 ms
68,540 KB
testcase_27 AC 1,490 ms
68,200 KB
testcase_28 AC 276 ms
57,532 KB
testcase_29 AC 389 ms
59,232 KB
testcase_30 AC 2,196 ms
66,984 KB
testcase_31 AC 1,853 ms
68,572 KB
testcase_32 AC 580 ms
64,912 KB
testcase_33 AC 1,353 ms
68,112 KB
testcase_34 AC 253 ms
57,820 KB
testcase_35 AC 308 ms
58,052 KB
testcase_36 AC 1,998 ms
69,256 KB
testcase_37 AC 1,070 ms
67,972 KB
testcase_38 AC 1,203 ms
68,236 KB
testcase_39 AC 1,308 ms
68,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] x = new long[n];
		long[] y = new long[n];
		for (int i = 0; i < n; i++) {
			x[i] = sc.nextLong();
			y[i] = sc.nextLong();
		}
		sc.close();

		int ans = 0;
		for (int i = 0; i < n; i++) {
			Map<String, List<Integer>> map = new HashMap<>();
			for (int j = 0; j < n; j++) {
				if (j != i) {
					long dx = x[j] - x[i];
					long dy = y[j] - y[i];
					String s = "inf";
					if (dx != 0) {
						if (dx < 0) {
							dx = -dx;
							dy = -dy;
						}
						long g = gcd(dx, Math.abs(dy));
						dx /= g;
						dy /= g;
						s = dy + "/" + dx;
					}
					List<Integer> list = map.get(s);
					if (list == null) {
						list = new ArrayList<>();
						map.put(s, list);
					}
					list.add(j);
				}
			}
			label:
			for (String s : map.keySet()) {
				List<Integer> list = map.get(s);
				if (list.size() < 2) {
					continue;
				}
				list.add(i);
				long[] z = s.equals("inf") ? y : x;
				int size = list.size();
				Obj[] arr = new Obj[size];
				for (int j = 0; j < size; j++) {
					Obj o = new Obj();
					o.i = list.get(j);
					o.x = z[o.i];
					arr[j] = o;
				}
				Arrays.sort(arr, (o1, o2) -> Long.compare(o1.x, o2.x));
				for (int j = 0; j < size; j++) {
					Obj o = arr[j];
					if (o.i == i && (j >= 2 || j < size - 2)) {
						ans++;
						break label;
					}
				}
			}
		}
		System.out.println(ans);
	}

	static class Obj {
		int i;
		long x;
	}

	static long gcd(long a, long b) {
		return b == 0 ? a : gcd(b, a % b);
	}
}
0