結果

問題 No.245 貫け!
ユーザー ぴろずぴろず
提出日時 2015-07-17 22:52:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,975 bytes
コンパイル時間 3,194 ms
コンパイル使用メモリ 92,032 KB
実行使用メモリ 53,876 KB
最終ジャッジ日時 2024-07-08 09:19:32
合計ジャッジ時間 16,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
46,020 KB
testcase_01 AC 200 ms
47,012 KB
testcase_02 AC 191 ms
47,120 KB
testcase_03 AC 172 ms
46,044 KB
testcase_04 AC 198 ms
46,540 KB
testcase_05 AC 210 ms
48,820 KB
testcase_06 AC 231 ms
48,980 KB
testcase_07 AC 166 ms
45,552 KB
testcase_08 AC 412 ms
50,580 KB
testcase_09 WA -
testcase_10 AC 649 ms
51,940 KB
testcase_11 WA -
testcase_12 AC 1,234 ms
53,876 KB
testcase_13 AC 1,047 ms
53,008 KB
testcase_14 AC 1,047 ms
53,040 KB
testcase_15 WA -
testcase_16 AC 1,121 ms
52,688 KB
testcase_17 WA -
testcase_18 AC 1,145 ms
52,752 KB
testcase_19 AC 1,161 ms
53,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no245;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		Vector2[][] seg = new Vector2[n][2];
		for(int i=0;i<n;i++) {
			seg[i][0] = new Vector2(sc.nextLong(), sc.nextLong());
			seg[i][1] = new Vector2(sc.nextLong(), sc.nextLong());
		}
		int ans = 0;
		for(int i=0;i<=200;i++) {
			for(int j=0;j<=200;j++) {
				if (i == 0 && j == 0) {
					continue;
				}
				Vector2 d = new Vector2(i, j);
				ArrayList<Event> al = new ArrayList<>();
				for(int k=0;k<n;k++) {
					long x1 = seg[k][0].dot(d);
					long x2 = seg[k][1].dot(d);
					al.add(new Event(Math.min(x1, x2), 1));
					al.add(new Event(Math.max(x1, x2), -1));
				}
				Collections.sort(al);
				int sum = 0;
				for(Event e:al) {
					sum += e.a;
					ans = Math.max(ans, sum);
				}
			}
		}
		System.out.println(ans);
	}

}
class Event implements Comparable<Event>{
	long x,a;
	public Event(long x,long a) {
		this.x = x;
		this.a = a;
	}
	public int compareTo(Event o) {
		if (x != o.x) {
			return Long.compare(x, o.x);
		}
		return - Long.compare(a, o.a);
	}
	public String toString() {
		return "[" + x + "," + a + "]";
	}
}
class Vector2 {
	long x = 0;
	long y = 0;
	public Vector2(long x,long y) {
		this.x = x;
		this.y = y;
	}
	public long dot(Vector2 v) {
		return this.x*v.x+this.y*v.y;
	}
	public long cross(Vector2 v) {
		return this.x*v.y-this.y*v.x;
	}
	public Vector2 add(Vector2 v) {
		return new Vector2(this.x+v.x,this.y+v.y);
	}
	public Vector2 subtract(Vector2 v) {
		return new Vector2(this.x-v.x,this.y-v.y);
	}
	public Vector2 multiply(long k) {
		return new Vector2(k*this.x,k*this.y);
	}
	public String toString() {
		return this.x + " " + this.y;
	}
	public boolean equals(Object o) {
		if (o instanceof Vector2) {
			Vector2 v = (Vector2) o;
			return x == v.x && y == v.y;
		}
		return super.equals(o);
	}
}
0