結果
問題 | No.13 囲みたい! |
ユーザー | core123 |
提出日時 | 2019-04-18 17:55:18 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 269 ms / 5,000 ms |
コード長 | 2,324 bytes |
コンパイル時間 | 2,419 ms |
コンパイル使用メモリ | 82,652 KB |
実行使用メモリ | 59,220 KB |
最終ジャッジ日時 | 2024-09-22 09:21:23 |
合計ジャッジ時間 | 6,463 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
54,296 KB |
testcase_01 | AC | 129 ms
54,252 KB |
testcase_02 | AC | 117 ms
52,776 KB |
testcase_03 | AC | 247 ms
58,092 KB |
testcase_04 | AC | 233 ms
57,404 KB |
testcase_05 | AC | 260 ms
58,584 KB |
testcase_06 | AC | 240 ms
57,868 KB |
testcase_07 | AC | 255 ms
59,100 KB |
testcase_08 | AC | 269 ms
58,980 KB |
testcase_09 | AC | 263 ms
59,220 KB |
testcase_10 | AC | 199 ms
56,860 KB |
testcase_11 | AC | 246 ms
57,604 KB |
testcase_12 | AC | 174 ms
54,304 KB |
testcase_13 | AC | 216 ms
57,548 KB |
testcase_14 | AC | 216 ms
57,808 KB |
testcase_15 | AC | 139 ms
54,160 KB |
ソースコード
import java.util.*; import java.util.stream.*; import static java.lang.Math.*; public class Main{ public static int[] dx={-1,0,0,1}; public static int[] dy={0,1,-1,0}; public static void main(String... args){ Scanner sc=new Scanner(System.in); int w=sc.nextInt(); int h=sc.nextInt(); int[][] m=new int[h][w]; for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ m[i][j]=sc.nextInt(); } } boolean[][] reached=new boolean[h][w]; boolean ans=false; for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ if(reached[i][j])continue; final int num=m[i][j]; Deque<Cell> deq=new ArrayDeque<>(); deq.add(new Cell(null,new Pair(i,j))); while(deq.size()>0){ Cell cell=deq.poll(); if(reached[cell.next.x][cell.next.y]){ //put("(x,y)=(%d,%d)",cell.next.x,cell.next.y); put("possible"); return; } reached[cell.next.x][cell.next.y]=true; for(int k=0;k<4;k++){ int x=cell.next.x+dx[k]; int y=cell.next.y+dy[k]; if(x<0||x>=h||y<0||y>=w)continue; if(m[x][y]!=num)continue; Pair next=new Pair(x,y); if(next.equals(cell.prev))continue; deq.addLast(new Cell(cell.next,next)); } } } } put("impossible"); } public static class Cell{ final Pair prev,next; Cell(Pair prev,Pair next){ this.prev=prev; this.next=next; } } public enum Direction{ UP, DOWN, LEFT, RIGHT; } public static class Pair{ final int x,y; Pair(int x,int y){ this.x=x; this.y=y; } @Override public String toString(){ return String.format("Pair(%d,%d)",x,y); } @Override public int hashCode(){ return x*1000+y; } @Override public boolean equals(Object obj){ if(obj==null)return false; if(obj instanceof Pair){ Pair pair=(Pair)obj; return x==pair.x&&y==pair.y; } return false; } } public static void print(Object object){ System.out.print(object); } public static void put(Object object) { System.out.println(object); } public static void put(){ System.out.println(); } public static void print(String format,Object... args){ System.out.print(String.format(format,args)); } public static void put(String format,Object... args) { System.out.println(String.format(format,args)); } }