結果

問題 No.1028 闇討ち
ユーザー face4face4
提出日時 2020-08-06 11:28:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,315 ms / 2,000 ms
コード長 1,944 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 78,280 KB
実行使用メモリ 171,100 KB
最終ジャッジ日時 2024-09-19 11:31:52
合計ジャッジ時間 17,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
42,576 KB
testcase_01 AC 50 ms
36,808 KB
testcase_02 AC 50 ms
36,788 KB
testcase_03 AC 50 ms
36,804 KB
testcase_04 AC 51 ms
36,888 KB
testcase_05 AC 55 ms
37,156 KB
testcase_06 AC 76 ms
38,312 KB
testcase_07 AC 53 ms
36,800 KB
testcase_08 AC 54 ms
36,804 KB
testcase_09 AC 179 ms
46,904 KB
testcase_10 AC 208 ms
48,560 KB
testcase_11 AC 506 ms
72,216 KB
testcase_12 AC 1,280 ms
153,212 KB
testcase_13 AC 1,247 ms
153,096 KB
testcase_14 AC 875 ms
103,812 KB
testcase_15 AC 384 ms
62,156 KB
testcase_16 AC 1,313 ms
156,864 KB
testcase_17 AC 1,280 ms
156,688 KB
testcase_18 AC 1,315 ms
156,420 KB
testcase_19 AC 1,285 ms
156,936 KB
testcase_20 AC 1,306 ms
171,100 KB
testcase_21 AC 1,302 ms
167,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.ArrayList;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        ArrayList<Integer> arr[][] = new ArrayList[n][n];
        for(int i = 0; i < n; i++){
            for(int j = 0; j < n; j++){
                arr[i][j] = new ArrayList<Integer>();
            }
        }
        for(int i = 0; i < n; i++){
            String[] line = br.readLine().split(" ");
            for(int j = 0; j < n; j++){
                arr[Integer.parseInt(line[j])-1][i].add(j);
            }
        }
        int ans = 0;
        for(int i = 0; i < n; i++){
            int sum[] = new int[n];
            for(int j = 0; j < n; j++){
                for(int k : arr[i][j]){
                    sum[j] += k;
                }
            }
            int down[] = new int[n], tmp[] = new int[n];
            int val = 0, acc = 0;
            for(int j = 0; j < n; j++){
                for(int k : arr[i][j]){
                    if(j+k+1 < n)   tmp[j+k+1]++;
                }
                val += sum[j];
                acc += tmp[j];
                val += acc;
                down[j] = val;
            }
            int up[] = new int[n];
            Arrays.fill(tmp, 0);
            val = 0;
            acc = 0;
            for(int j = n-1; j >= 0; j--){
                for(int k : arr[i][j]){
                    if(j-k-1 >= 0)  tmp[j-k-1]++;
                }
                val += sum[j];
                acc += tmp[j];
                val += acc;
                up[j] = val;
            }
            int score = 1<<30;
            for(int j = 0; j < n; j++){
                score = Math.min(score, down[j]+up[j]-sum[j]);
            }
            ans += score;
        }
        System.out.println(ans);
    }
}
0