結果

問題 No.1028 闇討ち
ユーザー kotatsugamekotatsugame
提出日時 2020-04-22 03:28:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 66,944 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-10-09 23:31:01
合計ジャッジ時間 4,962 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 12 ms
5,248 KB
testcase_10 AC 16 ms
5,504 KB
testcase_11 AC 56 ms
7,168 KB
testcase_12 AC 273 ms
11,008 KB
testcase_13 AC 268 ms
11,008 KB
testcase_14 AC 137 ms
9,216 KB
testcase_15 AC 40 ms
6,656 KB
testcase_16 AC 284 ms
11,236 KB
testcase_17 AC 282 ms
11,264 KB
testcase_18 AC 281 ms
11,264 KB
testcase_19 AC 282 ms
11,392 KB
testcase_20 AC 283 ms
11,264 KB
testcase_21 AC 288 ms
11,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N;
int s[2][1000][1001];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)for(int j=0;j<N;j++)
	{
		int A;cin>>A;A--;
		s[1][A][0]+=j;
		if(j<i)
		{
			s[1][A][0]+=i-j;
			s[0][A][1]--;
			s[0][A][i-j+1]++;
		}
		if(i+j<N)
		{
			s[0][A][i+j+1]++;
		}
	}
	int ans=0;
	for(int A=0;A<N;A++)
	{
		int now=1e9;
		for(int i=0;i<N;i++)
		{
			s[1][A][i]+=s[0][A][i];
			if(now>s[1][A][i])now=s[1][A][i];
			s[0][A][i+1]+=s[0][A][i];
			s[1][A][i+1]+=s[1][A][i];
		}
		ans+=now;
	}
	cout<<ans<<endl;
}
0