結果
| 問題 | 
                            No.1028 闇討ち
                             | 
                    
| コンテスト | |
| ユーザー | 
                             Rho
                         | 
                    
| 提出日時 | 2020-03-28 19:00:50 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 847 bytes | 
| コンパイル時間 | 1,723 ms | 
| コンパイル使用メモリ | 172,784 KB | 
| 実行使用メモリ | 28,960 KB | 
| 最終ジャッジ日時 | 2024-07-03 00:28:49 | 
| 合計ジャッジ時間 | 4,789 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 3 WA * 17 | 
ソースコード
#include "bits/stdc++.h"
#pragma warning(disable:4996)
using namespace std;
#define int long long
#define rep(i,n) for(int i=0;i<n;i++)
typedef pair<int, int> P;
int a[1005][1005];
vector<P>pos[1005];
signed main() {
	int n; cin >> n;
	rep(i, n) {
		rep(j, n) {
			cin >> a[i][j];
			a[i][j]--;
			pos[a[i][j]].push_back(P(i, j));
		}
	}
	int ans = 0;
	rep(i, n) {
		vector<int>imos(n + 1);
		assert(pos[i].size() == n);
		rep(j, n) {
			int x = pos[i][j].first, y = pos[i][j].second;
			imos[0]--;
			imos[max(x - y,0ll)]++;
			imos[min(x + y + 1,n)]++;
			imos[n]--;
		}
		rep(j, n)imos[j + 1] += imos[j];
		int pos2 = 0;
		rep(j, n-1) {
			if (imos[j] < 0 && imos[j + 1] >= 0) {
				pos2 = j + 1; break;
			}
		}
		rep(j, n) {
			int x = pos[i][j].first, y = pos[i][j].second;
			ans += max(abs(x - pos2), y);
		}
	}
	cout << ans << endl;
}
            
            
            
        
            
Rho