結果
問題 | No.1028 闇討ち |
ユーザー | Thistle |
提出日時 | 2020-03-28 18:29:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 117 ms / 2,000 ms |
コード長 | 1,192 bytes |
コンパイル時間 | 545 ms |
コンパイル使用メモリ | 67,752 KB |
実行使用メモリ | 20,336 KB |
最終ジャッジ日時 | 2024-09-25 07:45:51 |
合計ジャッジ時間 | 3,443 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 7 ms
6,940 KB |
testcase_10 | AC | 8 ms
6,948 KB |
testcase_11 | AC | 27 ms
12,268 KB |
testcase_12 | AC | 102 ms
20,336 KB |
testcase_13 | AC | 101 ms
18,864 KB |
testcase_14 | AC | 57 ms
16,244 KB |
testcase_15 | AC | 20 ms
10,228 KB |
testcase_16 | AC | 117 ms
19,164 KB |
testcase_17 | AC | 108 ms
19,128 KB |
testcase_18 | AC | 107 ms
19,148 KB |
testcase_19 | AC | 108 ms
20,156 KB |
testcase_20 | AC | 107 ms
19,140 KB |
testcase_21 | AC | 108 ms
19,276 KB |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<cassert> using namespace std; using ll = int_fast64_t; #define int ll #define rep(i,n) for(int (i) = 0 ; (i) < (n) ; (i)++) #define rng(i,s,n) for(int (i) = (s) ; (i) < (n) ; (i)++) template<class T>bool chmax(T & a, const T & b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T & a, const T & b) { if (b < a) { a = b; return 1; } return 0; } ll read() { ll u, k = scanf("%lld", &u); return u; } int n; int a[2000][2000]; int b[2000];//現在のコスト int ans[2000];//答えのコスト int c[2000][2]; void solve() { cin >> n; rep(i, n)rep(j, n) { a[i][j] = read() - 1; b[a[i][j]] += i + j - min(i, j); if (j < i) c[a[i][j]][1]++; } assert(1 <= n && n <= 1000); rep(i, n)rep(j, n) { assert(0 <= a[i][j] && a[i][j] < n); } rep(i, n) { ans[i] = b[i]; } rep(i, n) { for (int j = 0; i - j >= 0; j++) { c[a[i - j][j]][0]++; } rep(j, n) { b[j] += c[j][0] - c[j][1]; } rep(j, n) chmin(ans[j], b[j]); for (int j = 0; i + j + 1 < n; j++) { c[a[i + j + 1][j]][1]--; } } int sum = 0; rep(i, n) sum += ans[i]; cout << sum << endl; } signed main() { solve(); }