結果
問題 | No.971 いたずらっ子 |
ユーザー | 37zigen |
提出日時 | 2020-03-28 02:43:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 744 ms / 2,000 ms |
コード長 | 3,107 bytes |
コンパイル時間 | 2,452 ms |
コンパイル使用メモリ | 79,276 KB |
実行使用メモリ | 68,896 KB |
最終ジャッジ日時 | 2024-11-07 11:43:38 |
合計ジャッジ時間 | 12,335 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 744 ms
68,896 KB |
testcase_01 | AC | 666 ms
68,348 KB |
testcase_02 | AC | 677 ms
64,188 KB |
testcase_03 | AC | 625 ms
68,568 KB |
testcase_04 | AC | 649 ms
68,456 KB |
testcase_05 | AC | 667 ms
67,692 KB |
testcase_06 | AC | 659 ms
64,448 KB |
testcase_07 | AC | 178 ms
41,640 KB |
testcase_08 | AC | 426 ms
51,344 KB |
testcase_09 | AC | 424 ms
52,632 KB |
testcase_10 | AC | 176 ms
41,892 KB |
testcase_11 | AC | 136 ms
41,344 KB |
testcase_12 | AC | 134 ms
41,192 KB |
testcase_13 | AC | 142 ms
41,324 KB |
testcase_14 | AC | 240 ms
43,328 KB |
testcase_15 | AC | 144 ms
41,456 KB |
testcase_16 | AC | 151 ms
41,448 KB |
testcase_17 | AC | 135 ms
40,936 KB |
testcase_18 | AC | 137 ms
41,320 KB |
testcase_19 | AC | 138 ms
41,392 KB |
testcase_20 | AC | 137 ms
41,200 KB |
testcase_21 | AC | 137 ms
41,436 KB |
testcase_22 | AC | 141 ms
41,264 KB |
testcase_23 | AC | 131 ms
41,472 KB |
testcase_24 | AC | 134 ms
41,028 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(); } }