結果
| 問題 | No.2509 Beam Shateki |
| コンテスト | |
| ユーザー |
pmankirai
|
| 提出日時 | 2023-10-20 22:53:42 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 3,795 bytes |
| 記録 | |
| コンパイル時間 | 1,856 ms |
| コンパイル使用メモリ | 183,056 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-09-20 21:04:51 |
| 合計ジャッジ時間 | 10,539 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 TLE * 1 -- * 50 |
コンパイルメッセージ
main.cpp: In lambda function:
main.cpp:50:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
50 | for (auto [pi, pj] : p2) p.insert({pi, pj});
| ^
main.cpp:52:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
52 | 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, set<P> &p2) -> void {
for (auto [pi, pj] : p2) p.insert({pi, pj});
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 = set<P>();
rep(j2, w) p2.insert({i2, j2});
upd(p, p2);
}
rep(j2, w) {
auto p2 = set<P>();
rep(i2, h) p2.insert({i2, j2});
upd(p, p2);
}
rep(i2, h) {
auto p2 = set<P>();
rep(j2, w) {
if (i2 + j2 >= h) break;
if (j2 >= w) break;
p2.insert({i2 + j2, j2});
}
upd(p, p2);
}
rep(j2, w) {
auto p2 = set<P>();
rep(j2d, w) {
if (j2d >= h) break;
if (j2 + j2d >= w) break;
p2.insert({j2d, j2 + j2d});
}
upd(p, p2);
}
rep(i2, h) {
auto p2 = set<P>();
rep(j2, w) {
if (i2 - j2 < 0) break;
if (j2 >= w) break;
p2.insert({i2 - j2, j2});
}
upd(p, p2);
}
rep(j2, w) {
auto p2 = set<P>();
rep(j2d, w) {
if (j2d >= h) break;
if (j2 - j2d < 0) break;
p2.insert({j2d, j2 - j2d});
}
upd(p, 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;
}
pmankirai