結果

問題 No.1028 闇討ち
ユーザー finefine
提出日時 2020-04-17 21:58:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,063 bytes
コンパイル時間 1,565 ms
コンパイル使用メモリ 174,372 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-10-03 12:52:00
合計ジャッジ時間 3,698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 6 ms
6,820 KB
testcase_10 AC 7 ms
6,820 KB
testcase_11 AC 25 ms
7,424 KB
testcase_12 AC 109 ms
19,840 KB
testcase_13 AC 106 ms
19,584 KB
testcase_14 AC 59 ms
15,616 KB
testcase_15 AC 19 ms
6,816 KB
testcase_16 AC 115 ms
20,480 KB
testcase_17 AC 113 ms
20,224 KB
testcase_18 AC 118 ms
20,352 KB
testcase_19 AC 119 ms
20,480 KB
testcase_20 AC 113 ms
20,480 KB
testcase_21 AC 113 ms
20,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

// O(N)で配列aの[start, end)の中でk番目に小さい値を求める
template<class T>
T select_kth(vector<T>& a, int start, int end, int k) {
    vector<T> v(a.begin() + start, a.begin() + end);
    nth_element(v.begin(), v.begin() + k, v.end());
    return v[k];
}

// abs(X - (x + 1)) + abs(Y - (x - 1))

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    vector< vector<int> > vs(n), xs(n), ys(n);
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < n; ++j) {
            int a;
            cin >> a;
            --a;
            vs[a].push_back(i + j);
            vs[a].push_back(i - j);
            xs[a].push_back(i);
            ys[a].push_back(j);
        }
    }

    ll ans = 0;
    for (int i = 0; i < n; ++i) {
        int mid = select_kth(vs[i], 0, n * 2, n);
        for (int j = 0; j < n; ++j) {
            ans += max(abs(xs[i][j] - mid), abs(ys[i][j]));
        }
    }
    cout << ans << "\n";
    return 0;
}
0