結果

問題 No.2509 Beam Shateki
ユーザー 👑 binapbinap
提出日時 2023-10-20 21:44:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,804 bytes
コンパイル時間 4,522 ms
コンパイル使用メモリ 268,808 KB
実行使用メモリ 7,872 KB
最終ジャッジ日時 2023-10-20 21:44:57
合計ジャッジ時間 12,344 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 396 ms
4,348 KB
testcase_04 AC 393 ms
4,348 KB
testcase_05 AC 393 ms
4,348 KB
testcase_06 AC 395 ms
4,348 KB
testcase_07 AC 393 ms
4,348 KB
testcase_08 AC 393 ms
4,348 KB
testcase_09 AC 393 ms
4,348 KB
testcase_10 AC 395 ms
4,348 KB
testcase_11 AC 394 ms
4,348 KB
testcase_12 AC 418 ms
4,348 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef vector<int> vi;
typedef vector<long long> vl;
typedef vector<vector<int>> vvi;
typedef vector<vector<long long>> vvl;
typedef long double ld;

template <int m>
std::ostream& operator<<(std::ostream& os, const atcoder::static_modint<m>& a) {os << a.val(); return os;}
template<typename T>
istream& operator>>(istream& is, vector<T>& v){int n = v.size(); assert(n > 0); rep(i, n) is >> v[i]; return is;}
template<typename T>
ostream& operator<<(ostream& os, const vector<T>& v){int n = v.size(); rep(i, n) os << v[i] << (i == n - 1 ? "\n" : " "); return os;}
template <typename T>
ostream& operator<<(ostream& os, const vector<vector<T>>& v){int n = v.size(); rep(i, n) os << v[i] << (i == n - 1 ? "\n" : ""); return os;}

int main(){
	int h, w;
	cin >> h >> w;
	vector<vector<int>> a(h, vi(w));
	rep(y, h) cin >> a[y];
	int ans = 0;
	int n = h + w + (h + w - 1) + (h + w - 1);
	vi v(2);
	for(v[0] = 0; v[0] < n; v[0]++){
		for(v[1] = 0; v[1] < n; v[1]++){
			set<pair<int, int>> se;
			rep(i, 2){
				if(v[i] < h){
					int y = v[i];
					rep(x, w) se.insert(make_pair(y, x));
				}else if(v[i] < h + w){
					int x = v[i] - h;
					rep(y, h) se.insert(make_pair(y, x));
				}else if(v[i] < h + w + (h + w - 1)){
					int s = v[i] - (h + w);
					rep(y, h){
						int x = s - y;
						if(x >= 0 and x < w) se.insert(make_pair(y, x));
					}
				}else{
					int d = v[i] - (h + w + (h + w - 1)) - (w - 1);
					rep(y, h){
						int x = y - d;
						if(x >= 0 and x < w) se.insert(make_pair(y, x));
					}
					
				}
			}
			int tmp = 0;
			for(auto [y, x] : se){
				tmp += a[y][x];
			}
			ans = max(ans, tmp);
		}
	}
	cout << ans;
	return 0;
}
0