結果
問題 | No.1028 闇討ち |
ユーザー | Rho |
提出日時 | 2020-03-28 19:34:52 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 274 ms / 2,000 ms |
コード長 | 1,060 bytes |
コンパイル時間 | 1,764 ms |
コンパイル使用メモリ | 173,684 KB |
実行使用メモリ | 28,896 KB |
最終ジャッジ日時 | 2024-07-03 00:30:38 |
合計ジャッジ時間 | 5,559 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 12 ms
6,996 KB |
testcase_10 | AC | 17 ms
7,072 KB |
testcase_11 | AC | 63 ms
12,000 KB |
testcase_12 | AC | 259 ms
28,148 KB |
testcase_13 | AC | 250 ms
27,808 KB |
testcase_14 | AC | 143 ms
21,544 KB |
testcase_15 | AC | 46 ms
10,748 KB |
testcase_16 | AC | 269 ms
28,896 KB |
testcase_17 | AC | 271 ms
28,664 KB |
testcase_18 | AC | 274 ms
28,716 KB |
testcase_19 | AC | 270 ms
28,748 KB |
testcase_20 | AC | 272 ms
28,764 KB |
testcase_21 | AC | 271 ms
28,680 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:51:39: warning: 'pos2' may be used uninitialized [-Wmaybe-uninitialized] 51 | ans += max(abs(x - pos2), y); | ~~~^~~~~~~~~~ main.cpp:42:21: note: 'pos2' was declared here 42 | int pos2, mx = 1e17; | ^~~~
ソースコード
#include "bits/stdc++.h"#pragma warning(disable:4996)using namespace std;#define int long long#define rep(i,n) for(int i=0;i<n;i++)typedef pair<int, int> P;int a[1005][1005];vector<P>pos[1005];signed main() {int n; cin >> n;rep(i, n) {rep(j, n) {cin >> a[i][j];a[i][j]--;pos[a[i][j]].push_back(P(i, j));}}int ans = 0;rep(I, n) {vector<int>imos(n + 1);vector<int>imos1(n + 1), imos2(n + 1);assert(pos[I].size() == n);rep(j, n) {int x = pos[I][j].first, y = pos[I][j].second;imos1[0]++;imos1[max(x - y,0ll)]--;imos2[min(x + y + 1,n)]++;imos2[n]--;}rep(i, n) {imos1[i + 1] += imos1[i];imos2[i + 1] += imos2[i];}for (int i = n; i > 0; i--)imos1[i - 1] += imos1[i];rep(i, n)imos2[i + 1] += imos2[i];rep(i, n)imos[i] = imos1[i] + imos2[i];int pos2, mx = 1e17;rep(i, n) {if (mx > imos[i]) {mx = imos[i]; pos2 = i;}}rep(j, n) {int x = pos[I][j].first, y = pos[I][j].second;ans += max(abs(x - pos2), y);}}cout << ans << endl;}