結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 11 ms
6,820 KB
testcase_10 AC 15 ms
6,816 KB
testcase_11 AC 92 ms
8,180 KB
testcase_12 AC 632 ms
9,532 KB
testcase_13 AC 622 ms
9,524 KB
testcase_14 AC 273 ms
8,508 KB
testcase_15 AC 61 ms
8,436 KB
testcase_16 AC 700 ms
9,656 KB
testcase_17 AC 684 ms
9,652 KB
testcase_18 AC 713 ms
9,664 KB
testcase_19 AC 708 ms
9,704 KB
testcase_20 AC 695 ms
9,632 KB
testcase_21 AC 690 ms
9,640 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 = 1e9;
	    for (int j = 0; j < n; j++) {
	        if (v[i][j] < d) d = v[i][j];
	    }
		ans += d;
	}
	printf("%d\n", ans);
}
0