結果
問題 | No.971 いたずらっ子 |
ユーザー | 37zigen |
提出日時 | 2020-03-28 02:43:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 720 ms / 2,000 ms |
コード長 | 3,107 bytes |
コンパイル時間 | 2,611 ms |
コンパイル使用メモリ | 79,012 KB |
実行使用メモリ | 69,148 KB |
最終ジャッジ日時 | 2024-11-07 11:42:59 |
合計ジャッジ時間 | 12,418 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 652 ms
67,916 KB |
testcase_01 | AC | 720 ms
67,660 KB |
testcase_02 | AC | 658 ms
64,224 KB |
testcase_03 | AC | 698 ms
68,004 KB |
testcase_04 | AC | 687 ms
69,148 KB |
testcase_05 | AC | 693 ms
67,952 KB |
testcase_06 | AC | 557 ms
65,280 KB |
testcase_07 | AC | 167 ms
41,956 KB |
testcase_08 | AC | 504 ms
51,864 KB |
testcase_09 | AC | 410 ms
52,160 KB |
testcase_10 | AC | 172 ms
41,676 KB |
testcase_11 | AC | 116 ms
39,768 KB |
testcase_12 | AC | 129 ms
41,336 KB |
testcase_13 | AC | 137 ms
41,152 KB |
testcase_14 | AC | 229 ms
43,240 KB |
testcase_15 | AC | 136 ms
41,420 KB |
testcase_16 | AC | 145 ms
41,320 KB |
testcase_17 | AC | 130 ms
41,260 KB |
testcase_18 | AC | 128 ms
41,316 KB |
testcase_19 | AC | 128 ms
41,132 KB |
testcase_20 | AC | 130 ms
41,020 KB |
testcase_21 | AC | 131 ms
41,224 KB |
testcase_22 | AC | 133 ms
41,240 KB |
testcase_23 | AC | 133 ms
41,316 KB |
testcase_24 | AC | 134 ms
40,948 KB |
ソースコード
import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.Arrays; import java.util.NoSuchElementException; import java.util.Scanner; public class Main { public static void main(String[] args) throws FileNotFoundException { long t = System.currentTimeMillis(); new Main().run(); System.err.println(System.currentTimeMillis() - t); } void run() { Scanner sc = new Scanner(System.in); int H=sc.nextInt(); int W=sc.nextInt(); char[][] a=new char[H][W]; for(int i=0;i<H;++i) { a[i]=sc.next().toCharArray(); } int[][] dp=new int[H][W]; int INF=Integer.MAX_VALUE/3; for(int i=0;i<H;++i)for(int j=0;j<W;++j)dp[i][j]=INF; dp[0][0]=0; for(int sum=1;sum<=H-1+W-1;++sum) { for(int i=0;i<H;++i) { int j=sum-i; if(j<0||j>=W)continue; if(a[i][j]=='.') { dp[i][j]=1+Math.min((i>0?dp[i-1][j]:INF), (j>0?dp[i][j-1]:INF)); }else { dp[i][j]=i+j+1+Math.min((i>0?dp[i-1][j]:INF), (j>0?dp[i][j-1]:INF)); } } } System.out.println(dp[H-1][W-1]); } static void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } } class FastScanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; }else{ ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;} private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;} private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;} public boolean hasNext() { skipUnprintable(); return hasNextByte();} public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while(isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while(true){ if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; }else if(b == -1 || !isPrintableChar(b)){ return minus ? -n : n; }else{ throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { return (int)nextLong(); } }