結果
問題 | No.165 四角で囲え! |
ユーザー | nebukuro09 |
提出日時 | 2017-01-05 19:55:47 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,027 bytes |
コンパイル時間 | 1,135 ms |
コンパイル使用メモリ | 123,400 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 06:16:12 |
合計ジャッジ時間 | 3,696 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 114 ms
6,940 KB |
testcase_06 | AC | 24 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | AC | 99 ms
6,940 KB |
testcase_12 | AC | 124 ms
6,940 KB |
testcase_13 | AC | 132 ms
6,940 KB |
testcase_14 | AC | 130 ms
6,944 KB |
testcase_15 | AC | 123 ms
6,940 KB |
testcase_16 | AC | 164 ms
6,940 KB |
testcase_17 | AC | 121 ms
6,944 KB |
testcase_18 | AC | 155 ms
6,944 KB |
testcase_19 | AC | 139 ms
6,940 KB |
testcase_20 | AC | 121 ms
6,940 KB |
testcase_21 | AC | 121 ms
6,944 KB |
testcase_22 | AC | 121 ms
6,944 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.stdio, std.bitmanip; int acm2d (ref int[][] acm, int r1, int c1, int r2, int c2) { return acm[r2+1][c2+1] - acm[r2+1][c1] - acm[r1][c2+1] + acm[r1][c1]; } void main() { alias Tuple!(int, "x", int, "y", int, "p") Point; int N, B; Point[] p; scanf("%d %d", &N, &B); p = new Point[](N); foreach (i; 0..N) { int x, y, po; scanf("%d %d %d", &x, &y, &po); p[i] = Point(x, y, po); } p.sort!"a.x < b.x"(); int prev = p[0].x; p[0].x = 0; foreach (i; 1..N) { int cur = p[i].x; p[i].x = (p[i].x == prev) ? p[i-1].x : p[i-1].x + 1; prev = cur; } p.sort!"a.y < b.y"(); prev = p[0].y; p[0].y = 0; foreach (i; 1..N) { int cur = p[i].y; p[i].y = (p[i].y == prev) ? p[i-1].y : p[i-1].y + 1; prev = cur; } auto acm_score = new int[][](N+1, N+1); auto acm_exist = new int[][](N+1, N+1); foreach (i; 0..N) { acm_score[p[i].x+1][p[i].y+1] = p[i].p; acm_exist[p[i].x+1][p[i].y+1] = 1; } foreach (i; 0..N+1) { foreach (j; 0..N) { acm_score[i][j+1] += acm_score[i][j]; acm_exist[i][j+1] += acm_exist[i][j]; } } foreach (j; 0..N+1) { foreach (i; 0..N) { acm_score[i+1][j] += acm_score[i][j]; acm_exist[i+1][j] += acm_exist[i][j]; } } int ans = 0; foreach (r1; 0..N) { foreach (r2; r1+1..N) { int c1, c2; while (c2 < N) { if (acm2d(acm_score, r1, c1, r2, c2) <= B) { ans = max(ans, acm2d(acm_exist, r1, c1, r2, c2)); c2++; } else{ c1++; if (c2 < c1) c2 = c1; } } } } ans.writeln; }