結果

問題 No.1028 闇討ち
ユーザー WarToksWarToks
提出日時 2020-04-17 23:27:04
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 1,314 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 105,472 KB
実行使用メモリ 22,520 KB
最終ジャッジ日時 2024-11-30 17:34:51
合計ジャッジ時間 2,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 7 ms
6,016 KB
testcase_10 AC 9 ms
6,656 KB
testcase_11 AC 28 ms
12,160 KB
testcase_12 AC 100 ms
22,144 KB
testcase_13 AC 103 ms
22,016 KB
testcase_14 AC 57 ms
16,896 KB
testcase_15 AC 21 ms
10,624 KB
testcase_16 AC 110 ms
22,488 KB
testcase_17 AC 108 ms
22,504 KB
testcase_18 AC 108 ms
22,520 KB
testcase_19 AC 109 ms
22,484 KB
testcase_20 AC 106 ms
22,492 KB
testcase_21 AC 110 ms
22,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

constexpr unsigned int MAX_N = 1000;
unsigned int A[MAX_N][MAX_N];
unsigned long long int P[MAX_N][MAX_N];
unsigned long long int Q[MAX_N][MAX_N];
unsigned long long int S[MAX_N];

int main(void){
    unsigned int n; scanf("%u", &n);
    for(unsigned int i = 0; i < n; ++i) for(unsigned int j = 0; j < n; ++j){ scanf("%u", A[i] + j); --A[i][j]; }
    for(unsigned int i = 0; i < n; ++i) for(unsigned int j = 0; j < n; ++j){
        S[A[i][j]] += j;
        if(i + j + 1 < n) ++P[A[i][j]][i + j + 1];
        if(i >= (j + 1)) ++Q[A[i][j]][i - (j + 1)];
    }
    for(unsigned int i = 0; i < n; ++i){
        for(unsigned int j = 0; j + 1 < n; ++j) P[i][j + 1] += P[i][j];
        for(unsigned int j = 0; j + 1 < n; ++j) P[i][j + 1] += P[i][j];
    }
    for(unsigned int i = 0; i < n; ++i){
        for(unsigned int j = n - 1; j ; --j) Q[i][j - 1] += Q[i][j];
        for(unsigned int j = n - 1; j ; --j) Q[i][j - 1] += Q[i][j];
    }
    unsigned long long int res = 0;
    for(unsigned int i = 0; i < n; ++i){
        unsigned long long int s = P[i][0] + Q[i][0];
        for(unsigned int j = 1; j < n; ++j){
            const unsigned long long int&& tmp = P[i][j] + Q[i][j];
            if(tmp < s) s = tmp;
        }
        res += S[i] + s;
    }
    printf("%llu\n", res);
    return 0;
}
0