結果
問題 | No.2509 Beam Shateki |
ユーザー | pmankirai |
提出日時 | 2023-10-20 22:50:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,671 bytes |
コンパイル時間 | 2,905 ms |
コンパイル使用メモリ | 181,452 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-20 21:00:45 |
合計ジャッジ時間 | 68,626 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 308 ms
5,376 KB |
testcase_04 | AC | 312 ms
5,376 KB |
testcase_05 | AC | 312 ms
5,376 KB |
testcase_06 | AC | 308 ms
5,376 KB |
testcase_07 | AC | 317 ms
5,376 KB |
testcase_08 | AC | 315 ms
5,376 KB |
testcase_09 | AC | 314 ms
5,376 KB |
testcase_10 | AC | 307 ms
5,376 KB |
testcase_11 | AC | 313 ms
5,376 KB |
testcase_12 | AC | 313 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | AC | 45 ms
5,376 KB |
testcase_34 | AC | 562 ms
5,376 KB |
testcase_35 | AC | 1,195 ms
5,376 KB |
testcase_36 | AC | 207 ms
5,376 KB |
testcase_37 | AC | 8 ms
5,376 KB |
testcase_38 | AC | 230 ms
5,376 KB |
testcase_39 | AC | 196 ms
5,376 KB |
testcase_40 | AC | 684 ms
5,376 KB |
testcase_41 | AC | 5 ms
5,376 KB |
testcase_42 | AC | 284 ms
5,376 KB |
testcase_43 | AC | 1,478 ms
5,376 KB |
testcase_44 | AC | 1,771 ms
5,376 KB |
testcase_45 | AC | 196 ms
5,376 KB |
testcase_46 | AC | 357 ms
5,376 KB |
testcase_47 | AC | 1,770 ms
5,376 KB |
testcase_48 | AC | 464 ms
5,376 KB |
testcase_49 | AC | 792 ms
5,376 KB |
testcase_50 | AC | 981 ms
5,376 KB |
testcase_51 | AC | 39 ms
5,376 KB |
testcase_52 | AC | 605 ms
5,376 KB |
testcase_53 | AC | 2 ms
5,376 KB |
testcase_54 | AC | 2 ms
5,376 KB |
testcase_55 | AC | 2 ms
5,376 KB |
testcase_56 | AC | 3 ms
5,376 KB |
testcase_57 | AC | 2 ms
5,376 KB |
testcase_58 | WA | - |
testcase_59 | AC | 2 ms
5,376 KB |
testcase_60 | WA | - |
testcase_61 | AC | 3 ms
5,376 KB |
testcase_62 | AC | 2 ms
5,376 KB |
testcase_63 | WA | - |
コンパイルメッセージ
main.cpp: In lambda function: main.cpp:51:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 51 | for (auto [pi, pj] : p) sum += a[pi][pj]; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) #define rep1(i, n) for (int i = 1; i <= (n); i++) #define rrep(i, n) for (int i = n - 1; i >= 0; i--) #define rrep1(i, n) for (int i = n; i >= 1; i--) #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define eb emplace_back #define fi first #define se second #define sz(x) (int)(x).size() template <class T> using V = vector<T>; template <class T> using VV = V<V<T>>; typedef long long int ll; void speedUpIO() { cin.tie(nullptr); ios::sync_with_stdio(false); } template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template <class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; } /*--------------------------------------------------*/ typedef pair<int, int> P; const int INF = 1e9; const ll LINF = 1e18; const int MAX = 100010; void solve() { int h, w; cin >> h >> w; VV<int> a(h, V<int>(w)); rep(i, h) rep(j, w) cin >> a[i][j]; int ans = 0; auto upd = [&](set<P> &p) -> void { int sum = 0; for (auto [pi, pj] : p) sum += a[pi][pj]; chmax(ans, sum); }; auto f = [&](set<P> &p) -> void { rep(i2, h) { auto p2 = p; rep(j2, w) p2.insert({i2, j2}); upd(p2); } rep(j2, w) { auto p2 = p; rep(i2, h) p2.insert({i2, j2}); upd(p2); } rep(i2, h) { auto p2 = p; rep(j2, w) { if (i2 + j2 >= h) break; if (j2 >= w) break; p2.insert({i2 + j2, j2}); } upd(p2); } rep(j2, w) { auto p2 = p; rep(j2d, w) { if (j2d >= h) break; if (j2 + j2d >= w) break; p2.insert({j2d, j2 + j2d}); } upd(p2); } rep(i2, h) { auto p2 = p; rep(j2, w) { if (i2 - j2 < 0) break; if (j2 >= w) break; p2.insert({i2 - j2, j2}); } upd(p2); } rep(j2, w) { auto p2 = p; rep(j2d, w) { if (j2d >= h) break; if (j2 - j2d < 0) break; p2.insert({j2d, j2 - j2d}); } upd(p2); } }; rep(i, h) { set<P> p; rep(j, w) p.insert({i, j}); f(p); } rep(j, w) { set<P> p; rep(i, h) p.insert({i, j}); f(p); } rep(i, h) { set<P> p; rep(j, w) { if (i + j >= h) break; p.insert({i + j, j}); } f(p); } rep(j, w) { set<P> p; rep(jd, w) { if (jd >= h) break; if (j + jd >= w) break; p.insert({jd, j + jd}); } f(p); } rep(i, h) { set<P> p; rep(j, w) { if (i - j < 0) break; p.insert({i - j, j}); } f(p); } rep(j, w) { set<P> p; rep(jd, w) { if (jd >= h) break; if (j - jd < 0) break; p.insert({jd, j - jd}); } f(p); } cout << ans << "\n"; } int main() { speedUpIO(); int t = 1; // cin >> t; while (t--) { solve(); // cout << solve() << "\n"; // cout << (solve() ? "Yes" : "No") << "\n"; // cout << fixed << setprecision(15) << solve() << "\n"; } return 0; }