結果
問題 | No.1028 闇討ち |
ユーザー |
![]() |
提出日時 | 2020-03-28 18:59:11 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 851 bytes |
コンパイル時間 | 1,720 ms |
コンパイル使用メモリ | 173,000 KB |
実行使用メモリ | 29,044 KB |
最終ジャッジ日時 | 2024-07-03 00:29:41 |
合計ジャッジ時間 | 4,656 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 2 WA * 18 |
ソースコード
#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 = n - 1; 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; }