結果

問題 No.1028 闇討ち
ユーザー beetbeet
提出日時 2020-04-17 21:57:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,094 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 205,240 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-10-03 12:50:45
合計ジャッジ時間 11,943 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 13 ms
6,820 KB
testcase_10 AC 21 ms
6,820 KB
testcase_11 AC 126 ms
12,816 KB
testcase_12 AC 984 ms
28,060 KB
testcase_13 AC 969 ms
27,760 KB
testcase_14 AC 395 ms
21,800 KB
testcase_15 AC 83 ms
10,448 KB
testcase_16 AC 1,066 ms
28,524 KB
testcase_17 AC 1,057 ms
28,600 KB
testcase_18 AC 1,083 ms
28,532 KB
testcase_19 AC 1,086 ms
28,636 KB
testcase_20 AC 1,069 ms
28,800 KB
testcase_21 AC 1,094 ms
28,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
using Int = long long;
const char newl = '\n';

//INSERT ABOVE HERE
const Int MAX = 1010;
Int A[MAX][MAX];

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

  Int n;
  cin>>n;
  for(Int i=0;i<n;i++)
    for(Int j=0;j<n;j++)
      cin>>A[i][j],A[i][j]--;

  using P = pair<Int, Int>;
  vector<vector<P>> vp(n);
  for(Int i=0;i<n;i++)
    for(Int j=0;j<n;j++)
      vp[A[i][j]].emplace_back(i,j);

  const Int INF = 1e9;
  Int ans=0;
  for(Int i=0;i<n;i++){
    Int res=INF;
    for(Int j=0;j<n;j++){
      Int sum=0;
      for(auto p:vp[i]){
        sum+=max(abs(p.first-j),p.second);
        if(res<sum) break;
      }
      chmin(res,sum);
    }
    ans+=res;
  }
  cout<<ans<<newl;
  return 0;
}
0