結果

問題 No.1028 闇討ち
ユーザー WarToksWarToks
提出日時 2020-04-17 23:27:04
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,314 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 104,064 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-05-07 21:13:44
合計ジャッジ時間 2,867 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 8 ms
5,888 KB
testcase_10 AC 11 ms
6,656 KB
testcase_11 AC 33 ms
12,160 KB
testcase_12 AC 125 ms
21,888 KB
testcase_13 AC 124 ms
21,760 KB
testcase_14 AC 70 ms
16,896 KB
testcase_15 AC 26 ms
10,496 KB
testcase_16 AC 132 ms
22,400 KB
testcase_17 AC 131 ms
22,400 KB
testcase_18 AC 133 ms
22,528 KB
testcase_19 AC 133 ms
22,656 KB
testcase_20 AC 131 ms
22,528 KB
testcase_21 AC 131 ms
22,528 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