結果

問題 No.1028 闇討ち
ユーザー trineutrontrineutron
提出日時 2020-04-18 01:21:17
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 846 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 33,952 KB
実行使用メモリ 9,624 KB
最終ジャッジ日時 2024-10-03 20:17:17
合計ジャッジ時間 8,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 12 ms
5,248 KB
testcase_10 AC 19 ms
5,248 KB
testcase_11 AC 106 ms
5,504 KB
testcase_12 AC 758 ms
9,472 KB
testcase_13 AC 742 ms
9,344 KB
testcase_14 AC 322 ms
7,552 KB
testcase_15 AC 71 ms
5,248 KB
testcase_16 AC 846 ms
9,600 KB
testcase_17 AC 817 ms
9,624 KB
testcase_18 AC 821 ms
9,600 KB
testcase_19 AC 823 ms
9,600 KB
testcase_20 AC 820 ms
9,600 KB
testcase_21 AC 822 ms
9,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target ("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <stdio.h>

int a[1000][1000];
int v[1000][1000];

int main() {
	int n;
	scanf("%d", &n);
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < n; j++) {
			scanf("%d", &a[i][j]);
			a[i][j]--;
		}
	}
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < n; j++) {
			for (int k = 0; k < n; k++) {
				if (k > i + j) {
					v[a[i][j]][k] += k - i - j;
				} else if (k < i - j) {
					v[a[i][j]][k] += i - j - k;
				}
			}
		}
	}
	int ans = n * n * (n - 1) / 2;
	for (int i = 0; i < n; i++) {
	    int d = v[i][0];
	    for (int j = 1; j < n; j++) {
	        if (v[i][j] < d) d = v[i][j];
	    }
		ans += d;
	}
	printf("%d\n", ans);
}
0