結果

問題 No.2509 Beam Shateki
ユーザー pmankiraipmankirai
提出日時 2023-10-20 22:50:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,671 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 182,568 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-20 22:52:01
合計ジャッジ時間 76,785 ms
ジャッジサーバーID
(参考情報)
judge9 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 370 ms
4,348 KB
testcase_04 AC 340 ms
4,348 KB
testcase_05 AC 342 ms
4,348 KB
testcase_06 AC 368 ms
4,348 KB
testcase_07 AC 343 ms
4,348 KB
testcase_08 AC 341 ms
4,348 KB
testcase_09 AC 343 ms
4,348 KB
testcase_10 AC 368 ms
4,348 KB
testcase_11 AC 343 ms
4,348 KB
testcase_12 AC 341 ms
4,348 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 48 ms
4,348 KB
testcase_34 AC 634 ms
4,348 KB
testcase_35 AC 1,368 ms
4,348 KB
testcase_36 AC 233 ms
4,348 KB
testcase_37 AC 8 ms
4,348 KB
testcase_38 AC 260 ms
4,348 KB
testcase_39 AC 219 ms
4,348 KB
testcase_40 AC 781 ms
4,348 KB
testcase_41 AC 5 ms
4,348 KB
testcase_42 AC 311 ms
4,348 KB
testcase_43 AC 1,712 ms
4,348 KB
testcase_44 AC 1,986 ms
4,348 KB
testcase_45 AC 213 ms
4,348 KB
testcase_46 AC 414 ms
4,348 KB
testcase_47 TLE -
testcase_48 AC 539 ms
4,348 KB
testcase_49 AC 879 ms
4,348 KB
testcase_50 AC 1,102 ms
4,348 KB
testcase_51 AC 40 ms
4,348 KB
testcase_52 AC 693 ms
4,348 KB
testcase_53 AC 2 ms
4,348 KB
testcase_54 AC 2 ms
4,348 KB
testcase_55 AC 2 ms
4,348 KB
testcase_56 AC 2 ms
4,348 KB
testcase_57 AC 2 ms
4,348 KB
testcase_58 WA -
testcase_59 AC 2 ms
4,348 KB
testcase_60 WA -
testcase_61 AC 2 ms
4,348 KB
testcase_62 AC 2 ms
4,348 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];
      |                   ^

ソースコード

diff #

#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;
}
0