結果
問題 | No.2509 Beam Shateki |
ユーザー | FplusFplusF |
提出日時 | 2023-10-20 21:34:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,024 bytes |
コンパイル時間 | 2,526 ms |
コンパイル使用メモリ | 214,668 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-20 17:36:12 |
合計ジャッジ時間 | 10,235 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 398 ms
5,376 KB |
testcase_04 | AC | 392 ms
5,376 KB |
testcase_05 | AC | 393 ms
5,376 KB |
testcase_06 | AC | 394 ms
5,376 KB |
testcase_07 | AC | 395 ms
5,376 KB |
testcase_08 | AC | 396 ms
5,376 KB |
testcase_09 | AC | 398 ms
5,376 KB |
testcase_10 | AC | 393 ms
5,376 KB |
testcase_11 | AC | 393 ms
5,376 KB |
testcase_12 | AC | 393 ms
5,376 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> using namespace std; using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; using ld=long double; const ll INF=(1ll<<60); #define rep(i,n) for(ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() template<class T> void chmin(T &a,T b){ if(a>b){ a=b; } } template<class T> void chmax(T &a,T b){ if(a<b){ a=b; } } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll h,w; cin >> h >> w; vector<vector<ll>> a(h+2,vector<ll>(w+2,0)); for(ll i=1;i<=h;i++){ for(ll j=1;j<=w;j++){ cin >> a[i][j]; } } vector<pll> v; rep(i,h+2){ rep(j,w+2){ if(i==0||j==0||i==h+1||j==w+1) v.emplace_back(i,j); } } ll ans=0; for(auto [ai,aj]:v){ for(auto [bi,bj]:v){ for(ll di=-1;di<=1;di++){ for(ll dj=-1;dj<=1;dj++){ if(di==0&&dj==0) continue; ll now=0; set<pll> st; ll nai=ai,naj=aj; while(1<=nai+di&&nai+di<=h&&1<=naj+dj&&naj+dj<=w){ nai+=di; naj+=dj; st.insert({nai,naj}); now+=a[nai][naj]; } for(ll ei=-1;ei<=1;ei++){ for(ll ej=-1;ej<=1;ej++){ if(ei==0&&ej==0) continue; ll nbi=bi,nbj=bj; ll now2=now; while(1<=nbi+ei&&nbi+ei<=h&&1<=nbj+ej&&nbj+ej<=w){ nbi+=ei; nbj+=ej; if(st.count({nbi,nbj})) continue; now2+=a[nbi][nbj]; } chmax(ans,now2); } } } } } } cout << ans << '\n'; }