結果

問題 No.1028 闇討ち
ユーザー akun0716akun0716
提出日時 2020-06-17 22:38:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 1,854 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 83,772 KB
実行使用メモリ 20,764 KB
最終ジャッジ日時 2023-09-16 11:44:22
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 7 ms
4,380 KB
testcase_10 AC 10 ms
4,376 KB
testcase_11 AC 35 ms
7,464 KB
testcase_12 AC 157 ms
19,924 KB
testcase_13 AC 156 ms
20,216 KB
testcase_14 AC 83 ms
15,848 KB
testcase_15 AC 26 ms
6,884 KB
testcase_16 AC 165 ms
20,664 KB
testcase_17 AC 164 ms
20,736 KB
testcase_18 AC 164 ms
20,600 KB
testcase_19 AC 166 ms
20,760 KB
testcase_20 AC 167 ms
20,764 KB
testcase_21 AC 167 ms
20,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<map>
#include<set>
#include<stack>
#include<queue>
#include<math.h>
using namespace std;
typedef long long ll;
#define int long long
#define double long double
typedef vector<int> VI;
typedef pair<int, int> pii;
typedef vector<pii> VP;
typedef vector<string> VS;
typedef priority_queue<int> PQ;
template<class T>bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; }
#define fore(i,a) for(auto &i:a)
#define REP(i,n) for(int i=0;i<n;i++)
#define eREP(i,n) for(int i=0;i<=n;i++)
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define eFOR(i,a,b) for(int i=(a);i<=(b);++i)
#define SORT(c) sort((c).begin(),(c).end())
#define rSORT(c) sort((c).rbegin(),(c).rend())
#define LB(x,a) lower_bound((x).begin(),(x).end(),(a))
#define UB(x,a) upper_bound((x).begin(),(x).end(),(a))
#define INF 1000000000
#define LLINF 9223372036854775807
#define mod 1000000007
#define eps 1e-12 
//priority_queue<int,vector<int>, greater<int> > q2;

int N;
int A[1010][1010];
VI X[1010], Y[1010];


int check(int t, int num) {
	int res = 0;
	REP(i, N) {
		int co = min(abs(X[num][i] - t), Y[num][i]);
		co += abs(abs(X[num][i] - t) - Y[num][i]);
		res += co;
	}
	//cout << t << " " << num << " " << res << endl;
	return res;
}



signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	cin >> N;
	REP(i, N)REP(j, N) {
		int a; cin >> a; a--;
		X[a].push_back(i);
		Y[a].push_back(j);
	}

	int ans = 0;

	REP(i, N) {
		int L = 0, R = N - 1;
		while (R - L > 2) {
			int t1 = (L * 2 + R) / 3;
			int t2 = (L + R * 2) / 3;
			if (check(t1,i) < check(t2,i)) R = t2;
			else L = t1;
		}
		ans += min({ check(L,i),check(L + 1,i), check(R,i) });
	}



	cout << ans << endl;

	return 0;
}

0