結果
問題 | No.1028 闇討ち |
ユーザー | KoD |
提出日時 | 2020-04-17 21:51:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 268 ms / 2,000 ms |
コード長 | 2,115 bytes |
コンパイル時間 | 1,014 ms |
コンパイル使用メモリ | 86,480 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-10-03 12:06:41 |
合計ジャッジ時間 | 4,224 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 10 ms
6,820 KB |
testcase_10 | AC | 15 ms
6,816 KB |
testcase_11 | AC | 59 ms
6,816 KB |
testcase_12 | AC | 243 ms
11,008 KB |
testcase_13 | AC | 240 ms
10,752 KB |
testcase_14 | AC | 132 ms
7,552 KB |
testcase_15 | AC | 42 ms
6,820 KB |
testcase_16 | AC | 259 ms
11,136 KB |
testcase_17 | AC | 263 ms
11,264 KB |
testcase_18 | AC | 265 ms
11,264 KB |
testcase_19 | AC | 268 ms
11,264 KB |
testcase_20 | AC | 264 ms
11,264 KB |
testcase_21 | AC | 266 ms
11,392 KB |
ソースコード
#include <iostream> #include <algorithm> #include <utility> #include <vector> #include <numeric> template <class T, class U> inline bool chmin(T &lhs, const U &rhs) { if (lhs > rhs) { lhs = rhs; return true; } return false; } template <class T, class U> inline bool chmax(T &lhs, const U &rhs) { if (lhs < rhs) { lhs = rhs; return true; } return false; } // [l, r) from l to r struct range { struct itr { int i; constexpr itr(int i_): i(i_) { } constexpr void operator ++ () { ++i; } constexpr int operator * () const { return i; } constexpr bool operator != (itr x) const { return i != x.i; } }; const itr l, r; constexpr range(int l_, int r_): l(l_), r(std::max(l_, r_)) { } constexpr itr begin() const { return l; } constexpr itr end() const { return r; } }; // [l, r) from r to l struct revrange { struct itr { int i; constexpr itr(int i_): i(i_) { } constexpr void operator ++ () { --i; } constexpr int operator * () const { return i; } constexpr bool operator != (itr x) const { return i != x.i; } }; const itr l, r; constexpr revrange(int l_, int r_): l(l_ - 1), r(std::max(l_, r_) - 1) { } constexpr itr begin() const { return r; } constexpr itr end() const { return l; } }; int main() { int N; std::cin >> N; std::vector<std::vector<std::pair<int, int>>> house(N); for (auto &vec: house) { vec.reserve(N); } for (int i: revrange(0, N)) { for (int j: range(0, N)) { int x; std::cin >> x; --x; house[x].emplace_back(i, j); } } long long sum = 0; for (int i: range(0, N)) { std::vector<int> points; points.reserve(2 * N); for (auto [x, y]: house[i]) { int l = std::max(0, x - y); int r = std::min(N - 1, x + y); points.push_back(l); points.push_back(r); } std::sort(points.begin(), points.end()); int p = points[N - 1]; int tmp = 0; for (auto [x, y]: house[i]) { sum += std::max(std::abs(x - p), y); tmp += std::max(std::abs(x - p), y); } } std::cout << sum << '\n'; return 0; }