結果

問題 No.165 四角で囲え!
ユーザー ぴろずぴろず
提出日時 2015-03-12 23:51:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 685 ms / 5,000 ms
コード長 1,947 bytes
コンパイル時間 2,551 ms
コンパイル使用メモリ 80,592 KB
実行使用メモリ 44,816 KB
最終ジャッジ日時 2024-06-07 18:54:01
合計ジャッジ時間 11,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 406 ms
43,788 KB
testcase_01 AC 116 ms
41,156 KB
testcase_02 AC 109 ms
40,032 KB
testcase_03 AC 122 ms
40,988 KB
testcase_04 AC 120 ms
41,124 KB
testcase_05 AC 498 ms
43,692 KB
testcase_06 AC 278 ms
42,964 KB
testcase_07 AC 120 ms
41,468 KB
testcase_08 AC 121 ms
41,588 KB
testcase_09 AC 118 ms
41,004 KB
testcase_10 AC 107 ms
39,832 KB
testcase_11 AC 343 ms
43,400 KB
testcase_12 AC 287 ms
43,404 KB
testcase_13 AC 271 ms
43,432 KB
testcase_14 AC 265 ms
43,460 KB
testcase_15 AC 269 ms
43,344 KB
testcase_16 AC 584 ms
44,132 KB
testcase_17 AC 577 ms
44,816 KB
testcase_18 AC 685 ms
44,404 KB
testcase_19 AC 630 ms
44,812 KB
testcase_20 AC 493 ms
44,480 KB
testcase_21 AC 528 ms
44,484 KB
testcase_22 AC 520 ms
44,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no165;

import java.util.Arrays;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int b = sc.nextInt();
		Point[] p = new Point[n];
		for(int i=0;i<n;i++) {
			p[i] = new Point(sc.nextInt(),sc.nextInt(),sc.nextInt(),i);
		}
		Arrays.sort(p, (x,y) -> Integer.compare(x.x, y.x));
		for(int i=1;i<n;i++) {
			p[i].xr = p[i-1].xr + ((p[i].x == p[i-1].x) ? 0 : 1);
		}
		int w = p[n-1].xr + 1;
		Arrays.sort(p, (x,y) -> Integer.compare(x.y, y.y));
		for(int i=1;i<n;i++) {
			p[i].yr = p[i-1].yr + ((p[i].y == p[i-1].y) ? 0 : 1);
		}
		int h = p[n-1].yr + 1;
		int[][] count = new int[h+1][w+1];
		int[][] point = new int[h+1][w+1];
		for(int i=0;i<n;i++) {
//			System.out.println(p[i].xr + "," + p[i].yr);
			count[p[i].yr + 1][p[i].xr + 1]++;
			point[p[i].yr + 1][p[i].xr + 1] += p[i].p;
		}
//		System.out.println(Arrays.deepToString(point));
		for(int i=1;i<=h;i++) {
			for(int j=0;j<=w;j++) {
				point[i][j] += point[i-1][j];
				count[i][j] += count[i-1][j];
			}
		}
//		System.out.println(Arrays.deepToString(point));

//		for(int i=0;i<=h;i++) {
//			for(int j=1;j<w;j++) {
//				point[i][j] += point[i][j-1];
//				count[i][j] += count[i][j-1];
//			}
//		}
		int ans = 0;
		for(int i1=1;i1<=h;i1++) {
			for(int i2=i1;i2<=h;i2++) {
				int sump = 0;
				int sumc = 0;
				int j2 = 1;
				for(int j1=1;j1<=w;j1++) {
					while(j2 <= w && sump + point[i2][j2] - point[i1-1][j2] <= b) {
						sump += point[i2][j2] - point[i1-1][j2];
						sumc += count[i2][j2] - count[i1-1][j2];
						j2++;
					}
					ans = Math.max(ans, sumc);
					sump -= point[i2][j1] - point[i1-1][j1];
					sumc -= count[i2][j1] - count[i1-1][j1];
				}
			}
		}
		System.out.println(ans);
	}


	static class Point {
		int x,y,p,xr,yr,i;
		public Point(int x,int y,int p,int i) {
			this.x = x;
			this.y = y;
			this.p = p;
			this.i = i;
		}
	}

}
0