結果
問題 | No.2509 Beam Shateki |
ユーザー | ococonomy1 |
提出日時 | 2023-10-20 23:09:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,508 bytes |
コンパイル時間 | 1,964 ms |
コンパイル使用メモリ | 127,068 KB |
実行使用メモリ | 10,272 KB |
最終ジャッジ日時 | 2024-09-20 22:16:58 |
合計ジャッジ時間 | 13,128 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,272 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 193 ms
5,376 KB |
testcase_04 | AC | 191 ms
5,376 KB |
testcase_05 | AC | 193 ms
5,376 KB |
testcase_06 | AC | 195 ms
5,376 KB |
testcase_07 | AC | 198 ms
5,376 KB |
testcase_08 | AC | 199 ms
5,376 KB |
testcase_09 | AC | 193 ms
5,376 KB |
testcase_10 | AC | 196 ms
5,376 KB |
testcase_11 | AC | 188 ms
5,376 KB |
testcase_12 | AC | 189 ms
5,376 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 | -- | - |
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 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <algorithm> #include <bitset> #include <cassert> #include <climits> #include <cmath> #include <complex> #include <deque> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <set> #include <string> #include <tuple> #include <vector> using namespace std; using lg = long long; using pii = pair<int, int>; using pll = pair<lg, lg>; #define TEST cerr << "TEST" << endl #define AMARI 998244353 // #define AMARI 1000000007 #define TEMOTO ((sizeof(long double) == 16) ? false : true) #define TIME_LIMIT 1980 * (TEMOTO ? 1 : 1000) #define el '\n' #define El '\n' #define MULTI_TEST_CASE false void solve(void) { 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]; } } int ans = 0; int mhw = max(h,w); vector<pii> d = {pair(1,0),pair(0,1),pair(1,1),pair(1,-1)}; for(int di = 0; di < 4; di++){ for(int dj = di; dj < 4; dj++){ //i*d[di].first + j*d[di].second == kなるやつを探す このうち負になり得るのはd[di].secondだけだから下は-w以上 for(int k = -w; k < h + w; k++){ if(di != 2 && k >= mhw)break; if(di != 3 && k < 0)continue; for(int l = -w; l < h + w; l++){ if(dj != 2 && l >= mhw)break; if(dj != 3 && l < 0)continue; if(di == dj && l < k)continue; int temp = 0; int cnt = 0; for(int i = 0; i < h; i++){ for(int j = 0; j < w; j++){ if(i * d[di].first + j * d[di].second == k || i * d[dj].first + j * d[dj].second == l){ temp += a[i][j]; cnt++; } if(cnt == 2 * mhw)break; } if(cnt == 2 * mhw)break; } ans = max(ans,temp); } } } } cout << ans << el; return; } void calc(void) { return; } signed main(void) { cin.tie(nullptr); ios::sync_with_stdio(false); calc(); int t = 1; if(MULTI_TEST_CASE) cin >> t; while(t--) { solve(); } return 0; }