結果
問題 | No.2509 Beam Shateki |
ユーザー | 👑 binap |
提出日時 | 2023-10-20 21:44:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,804 bytes |
コンパイル時間 | 4,538 ms |
コンパイル使用メモリ | 269,720 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-09-20 17:58:48 |
合計ジャッジ時間 | 11,334 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 368 ms
6,940 KB |
testcase_04 | AC | 369 ms
6,944 KB |
testcase_05 | AC | 360 ms
6,940 KB |
testcase_06 | AC | 358 ms
6,944 KB |
testcase_07 | AC | 368 ms
6,940 KB |
testcase_08 | AC | 367 ms
6,944 KB |
testcase_09 | AC | 370 ms
6,940 KB |
testcase_10 | AC | 359 ms
6,944 KB |
testcase_11 | AC | 356 ms
6,944 KB |
testcase_12 | AC | 373 ms
6,940 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 | -- | - |
ソースコード
#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; }