結果
問題 | No.2769 Number of Rhombi |
ユーザー | tenten |
提出日時 | 2024-06-04 18:16:44 |
言語 | Java (openjdk 23) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,942 bytes |
コンパイル時間 | 3,658 ms |
コンパイル使用メモリ | 79,140 KB |
実行使用メモリ | 458,788 KB |
最終ジャッジ日時 | 2024-12-23 11:00:57 |
合計ジャッジ時間 | 116,198 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 TLE * 1 |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); Point[] points = new Point[n]; Map<Long, Map<Integer, Set<Integer>>> lines = new HashMap<>(); for (int i = 0; i < n; i++) { points[i] = new Point(sc.nextInt(), sc.nextInt()); for (int j = 0; j < i; j++) { long d = points[i].getDistance(points[j]); if (!lines.containsKey(d)) { lines.put(d, new HashMap<>()); } if (!lines.get(d).containsKey(j)) { lines.get(d).put(j, new HashSet<>()); } lines.get(d).get(j).add(i); if (!lines.get(d).containsKey(i)) { lines.get(d).put(i, new HashSet<>()); } lines.get(d).get(i).add(j); } } int ans = 0; for (Map<Integer, Set<Integer>> current : lines.values()) { for (int x : current.keySet()) { for (int y : current.get(x)) { if (x >= y) { continue; } for (int z : current.get(x)) { if (y >= z) { continue; } for (int k : current.get(y)) { if (k > x && current.get(z).contains(k)) { ans++; } } } } } } System.out.println(ans); } static class Point { long x; long y; public Point(long x, long y) { this.x = x; this.y = y; } public long getDistance(Point p) { return (x - p.x) * (x - p.x) + (y - p.y) * (y - p.y); } } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }