結果

問題 No.1028 闇討ち
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-05-15 20:13:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 1,403 bytes
コンパイル時間 1,506 ms
コンパイル使用メモリ 166,892 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-09-19 06:40:24
合計ジャッジ時間 6,987 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 14 ms
5,376 KB
testcase_10 AC 20 ms
5,376 KB
testcase_11 AC 89 ms
6,528 KB
testcase_12 AC 373 ms
15,744 KB
testcase_13 AC 374 ms
15,488 KB
testcase_14 AC 189 ms
11,904 KB
testcase_15 AC 61 ms
6,016 KB
testcase_16 AC 404 ms
15,872 KB
testcase_17 AC 400 ms
16,128 KB
testcase_18 AC 403 ms
16,256 KB
testcase_19 AC 408 ms
16,256 KB
testcase_20 AC 412 ms
16,256 KB
testcase_21 AC 414 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	e.cpp
 *   @Author	kanpurin
 *   @Created	2020.05.15 20:13:17
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n;
    cin >> n;
    vector< vector< int > > a1(n),a2(n);
    vector< vector< int > > ans(n, vector< int >(n));
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            int b;
            cin >> b;
            b--;
            a1[b].push_back(i - j);
            a2[b].push_back(i + j);
            ans[0][b] += max(i,j);
        }
    }
    for (int i = 0; i < n; i++) {
        sort(a1[i].begin(), a1[i].end());
        sort(a2[i].begin(), a2[i].end());
    }
    for (int i = 1; i < n; i++) {
        for (int j = 0; j < n; j++) {
            //cout << i << " " << j << " " << (upper_bound(a2[j].begin(), a2[j].end(), i-1) - a2[j].begin()) << endl;
            //cout << i << " " << j << " " << a1[j].end() - upper_bound(a1[j].begin(), a1[j].end(), i-1) << endl;
            ans[i][j] = ans[i-1][j] + (upper_bound(a2[j].begin(), a2[j].end(), i-1) - a2[j].begin()) - (a1[j].end() - upper_bound(a1[j].begin(), a1[j].end(), i-1));
        }
    }
    int res = 0;
    constexpr int INF = 1e9 + 6;
    for (int i = 0; i < n; i++) {
        int m = INF;
        for (int j = 0; j < n; j++) {
            m = min(ans[j][i],m);
        }
        res += m;
    }
    cout << res << endl;
    return 0;
}
0