結果
| 問題 |
No.2657 Falling Block Game
|
| コンテスト | |
| ユーザー |
ks2m
|
| 提出日時 | 2024-03-01 22:37:59 |
| 言語 | Java (openjdk 23) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 2,044 bytes |
| コンパイル時間 | 2,226 ms |
| コンパイル使用メモリ | 86,292 KB |
| 実行使用メモリ | 73,640 KB |
| 最終ジャッジ日時 | 2024-09-29 14:36:07 |
| 合計ジャッジ時間 | 7,198 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 2 TLE * 1 -- * 34 |
ソースコード
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.PriorityQueue;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int h = sc.nextInt();
int w = sc.nextInt();
char[][] s = new char[h][w];
for (int i = 0; i < h; i++) {
s[i] = sc.next().toCharArray();
}
sc.close();
int inf = 100000000;
int[][] d = new int[h][w];
for (int i = 0; i < h; i++) {
Arrays.fill(d[i], inf);
}
PriorityQueue<Obj> que = new PriorityQueue<>((o1, o2) -> o1.d - o2.d);
int h1 = h - 1;
for (int j = 0; j < w; j++) {
if (s[h1][j] == '.') {
d[h1][j] = 0;
que.add(new Obj(h1, j, d[h1][j]));
}
}
while (!que.isEmpty()) {
Obj o = que.poll();
if (d[o.i][o.j] < o.d) {
continue;
}
if (o.i > 0) {
int ni = o.i - 1;
int end = Math.min(o.j + o.d, w - 1);
for (int nj = o.j; nj <= end; nj++) {
if (s[ni][nj] == '#') {
break;
}
int alt = o.d;
if (d[ni][nj] > alt) {
d[ni][nj] = alt;
que.add(new Obj(ni, nj, alt));
}
}
end = Math.max(o.j - o.d, 0);
for (int nj = o.j; nj >= end; nj--) {
if (s[ni][nj] == '#') {
break;
}
int alt = o.d;
if (d[ni][nj] > alt) {
d[ni][nj] = alt;
que.add(new Obj(ni, nj, alt));
}
}
}
int ni = o.i;
if (o.j > 0) {
int nj = o.j - 1;
if (s[ni][nj] == '.') {
int alt = o.d + 1;
if (d[ni][nj] > alt) {
d[ni][nj] = alt;
que.add(new Obj(ni, nj, alt));
}
}
}
if (o.j < w - 1) {
int nj = o.j + 1;
if (s[ni][nj] == '.') {
int alt = o.d + 1;
if (d[ni][nj] > alt) {
d[ni][nj] = alt;
que.add(new Obj(ni, nj, alt));
}
}
}
}
PrintWriter pw = new PrintWriter(System.out);
for (int j = 0; j < w; j++) {
pw.println(d[0][j]);
}
pw.flush();
}
static class Obj {
int i, j, d;
public Obj(int i, int j, int d) {
this.i = i;
this.j = j;
this.d = d;
}
}
}
ks2m