結果

問題 No.1028 闇討ち
ユーザー yuji9511yuji9511
提出日時 2020-04-17 23:58:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,790 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 172,544 KB
実行使用メモリ 28,824 KB
最終ジャッジ日時 2024-10-03 16:22:03
合計ジャッジ時間 4,734 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 8 ms
5,248 KB
testcase_10 AC 11 ms
5,760 KB
testcase_11 AC 38 ms
11,264 KB
testcase_12 AC 153 ms
27,988 KB
testcase_13 AC 149 ms
27,904 KB
testcase_14 AC 84 ms
21,120 KB
testcase_15 AC 28 ms
9,984 KB
testcase_16 AC 160 ms
28,620 KB
testcase_17 AC 161 ms
28,824 KB
testcase_18 AC 162 ms
28,772 KB
testcase_19 AC 160 ms
28,672 KB
testcase_20 AC 160 ms
28,680 KB
testcase_21 AC 160 ms
28,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*** author: yuji9511 ***/
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using lpair = pair<ll, ll>;
const ll MOD = 1e9+7;
const ll INF = 1e18;
#define rep(i,m,n) for(ll i=(m);i<(n);i++)
#define rrep(i,m,n) for(ll i=(m);i>=(n);i--)
#define printa(x,n) for(ll i=0;i<n;i++){cout<<(x[i])<<" \n"[i==n-1];};
void print() {}
template <class H,class... T>
void print(H&& h, T&&... t){cout<<h<<" \n"[sizeof...(t)==0];print(forward<T>(t)...);}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N;
    cin >> N;
    ll A[1010][1010];
    rep(i,0,N){
        rep(j,0,N){
            cin >> A[i][j];
            A[i][j]--;
        }
    }
    vector<lpair> pos[1010];
    rep(i,0,N){
        rep(j,0,N){
            pos[A[i][j]].push_back({i,j});
        }
    }
    ll ans = 0;
    rep(i,0,N){
        ll lb = 0, ub = N+1;
        while(ub - lb > 2){
            ll t1 = (2 * lb + ub) / 3;
            ll t2 = (2 * ub + lb) / 3;
            ll res1 = 0, res2 = 0;
            for(auto &e: pos[i]){
                ll diff_x = abs(t1 - e.first);
                res1 += min(diff_x, e.second) + abs(diff_x - e.second);
                diff_x = abs(t2 - e.first);
                res2 += min(diff_x, e.second) + abs(diff_x - e.second);
            } 
            if(res1 <= res2){
                ub = t2;
            }else{
                lb = t1;
            }
        }
        ll min_val = INF;
        for(ll p = max(0LL, lb-1); p < min(N-1, ub+1); p++){
            ll res = 0;
            for(auto &e: pos[i]){
                ll diff_x = abs(p - e.first);
                res += min(diff_x, e.second) + abs(diff_x - e.second);
            }
            min_val = min(min_val, res);
            
        }
        ans += min_val;

    }
    print(ans);

}
0