結果

問題 No.2509 Beam Shateki
ユーザー Today03Today03
提出日時 2023-10-20 21:58:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,740 ms / 2,000 ms
コード長 1,546 bytes
コンパイル時間 3,310 ms
コンパイル使用メモリ 236,892 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 18:54:42
合計ジャッジ時間 48,812 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 192 ms
6,940 KB
testcase_04 AC 193 ms
6,944 KB
testcase_05 AC 192 ms
6,944 KB
testcase_06 AC 192 ms
6,944 KB
testcase_07 AC 194 ms
6,944 KB
testcase_08 AC 193 ms
6,940 KB
testcase_09 AC 193 ms
6,944 KB
testcase_10 AC 191 ms
6,940 KB
testcase_11 AC 199 ms
6,940 KB
testcase_12 AC 200 ms
6,944 KB
testcase_13 AC 1,693 ms
6,940 KB
testcase_14 AC 1,684 ms
6,940 KB
testcase_15 AC 1,706 ms
6,940 KB
testcase_16 AC 1,693 ms
6,940 KB
testcase_17 AC 1,711 ms
6,940 KB
testcase_18 AC 1,682 ms
6,944 KB
testcase_19 AC 1,660 ms
6,940 KB
testcase_20 AC 1,683 ms
6,940 KB
testcase_21 AC 1,696 ms
6,940 KB
testcase_22 AC 1,708 ms
6,944 KB
testcase_23 AC 1,727 ms
6,940 KB
testcase_24 AC 1,736 ms
6,940 KB
testcase_25 AC 1,698 ms
6,944 KB
testcase_26 AC 1,740 ms
6,940 KB
testcase_27 AC 1,719 ms
6,940 KB
testcase_28 AC 1,704 ms
6,940 KB
testcase_29 AC 1,684 ms
6,944 KB
testcase_30 AC 1,698 ms
6,940 KB
testcase_31 AC 1,735 ms
6,940 KB
testcase_32 AC 1,717 ms
6,944 KB
testcase_33 AC 26 ms
6,940 KB
testcase_34 AC 376 ms
6,944 KB
testcase_35 AC 812 ms
6,940 KB
testcase_36 AC 120 ms
6,944 KB
testcase_37 AC 5 ms
6,940 KB
testcase_38 AC 155 ms
6,944 KB
testcase_39 AC 115 ms
6,944 KB
testcase_40 AC 469 ms
6,940 KB
testcase_41 AC 3 ms
6,940 KB
testcase_42 AC 179 ms
6,940 KB
testcase_43 AC 1,025 ms
6,944 KB
testcase_44 AC 1,222 ms
6,944 KB
testcase_45 AC 116 ms
6,940 KB
testcase_46 AC 210 ms
6,940 KB
testcase_47 AC 1,269 ms
6,944 KB
testcase_48 AC 308 ms
6,940 KB
testcase_49 AC 538 ms
6,940 KB
testcase_50 AC 658 ms
6,940 KB
testcase_51 AC 20 ms
6,944 KB
testcase_52 AC 391 ms
6,944 KB
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 1 ms
6,944 KB
testcase_55 AC 2 ms
6,944 KB
testcase_56 AC 2 ms
6,940 KB
testcase_57 AC 2 ms
6,944 KB
testcase_58 AC 2 ms
6,944 KB
testcase_59 AC 2 ms
6,944 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,944 KB
testcase_63 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
using namespace std;

const vector<int> dx = {0, 1, 1, 1};
const vector<int> dy = {1, 0, 1, -1};

int main() {
	int h, w;
	cin >> h >> w;
	vector<vector<int>> A(h, vector<int>(w));
	for (int i = 0; i < h; i++) {
		for (int j = 0; j < w; j++) {
			cin >> A[i][j];
		}
	}
	vector<tuple<int, int, int>> start;
	start.push_back(make_tuple(0, 0, 2));
	for (int i = 1; i <= w; i++) {
		start.push_back(make_tuple(0, i, 1));
		start.push_back(make_tuple(0, i, 2));
		start.push_back(make_tuple(0, i, 3));
	}
	start.push_back(make_tuple(0, w + 1, 3));
	for (int i = 1; i <= h; i++) {
		start.push_back(make_tuple(i, 0, 0));
		start.push_back(make_tuple(i, 0, 2));
		start.push_back(make_tuple(i, 0, 3));
		start.push_back(make_tuple(i, w + 1, 3));
	}
	long long ans = 0;
	for (tuple<int, int, int> T1 : start) {
		for (tuple<int, int, int> T2 : start) {
			long long res = 0;
			int x1, y1, d1, x2, y2, d2;
			tie(x1, y1, d1) = T1;
			tie(x2, y2, d2) = T2;
			x1 += dx[d1];
			y1 += dy[d1];
			x2 += dx[d2];
			y2 += dy[d2];
			set<pair<int, int>> st;
			while (1 <= x1 && x1 <= h && 1 <= y1 && y1 <= w) {
				res += A[x1 - 1][y1 - 1];
				st.insert(make_pair(x1, y1));
				x1 += dx[d1];
				y1 += dy[d1];
			}
			while (1 <= x2 && x2 <= h && 1 <= y2 && y2 <= w) {
				if (!st.count(make_pair(x2, y2))) {
					res += A[x2 - 1][y2 - 1];
				}
				x2 += dx[d2];
				y2 += dy[d2];
			}
			ans = max(ans, res);
		}
	}
	cout << ans << endl;
}
0