結果

問題 No.2509 Beam Shateki
ユーザー umimelumimel
提出日時 2023-10-20 22:22:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,572 bytes
コンパイル時間 1,871 ms
コンパイル使用メモリ 178,044 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-20 22:23:47
合計ジャッジ時間 62,159 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 288 ms
4,348 KB
testcase_04 AC 290 ms
4,348 KB
testcase_05 AC 288 ms
4,348 KB
testcase_06 AC 288 ms
4,348 KB
testcase_07 AC 288 ms
4,348 KB
testcase_08 AC 289 ms
4,348 KB
testcase_09 AC 289 ms
4,348 KB
testcase_10 AC 289 ms
4,348 KB
testcase_11 AC 288 ms
4,348 KB
testcase_12 AC 288 ms
4,348 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 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 44 ms
4,348 KB
testcase_34 AC 542 ms
4,348 KB
testcase_35 AC 1,090 ms
4,348 KB
testcase_36 AC 200 ms
4,348 KB
testcase_37 AC 16 ms
4,348 KB
testcase_38 AC 222 ms
4,348 KB
testcase_39 AC 192 ms
4,348 KB
testcase_40 AC 644 ms
4,348 KB
testcase_41 AC 5 ms
4,348 KB
testcase_42 AC 267 ms
4,348 KB
testcase_43 AC 1,341 ms
4,348 KB
testcase_44 AC 1,596 ms
4,348 KB
testcase_45 AC 185 ms
4,348 KB
testcase_46 AC 336 ms
4,348 KB
testcase_47 AC 1,601 ms
4,348 KB
testcase_48 AC 426 ms
4,348 KB
testcase_49 AC 719 ms
4,348 KB
testcase_50 AC 898 ms
4,348 KB
testcase_51 AC 39 ms
4,348 KB
testcase_52 AC 554 ms
4,348 KB
testcase_53 AC 3 ms
4,348 KB
testcase_54 AC 3 ms
4,348 KB
testcase_55 AC 2 ms
4,348 KB
testcase_56 AC 3 ms
4,348 KB
testcase_57 AC 3 ms
4,348 KB
testcase_58 AC 2 ms
4,348 KB
testcase_59 AC 3 ms
4,348 KB
testcase_60 AC 3 ms
4,348 KB
testcase_61 AC 3 ms
4,348 KB
testcase_62 AC 2 ms
4,348 KB
testcase_63 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second
mt19937_64 rng(chrono::system_clock::now().time_since_epoch().count());
const ll MOD1000000007 = 1000000007;
const ll MOD998244353 = 998244353;
const ll MOD[3] = {999727999, 1070777777, 1000000007};
const ll LINF = 1LL << 60LL;
const int IINF = (1 << 30) - 1;


void solve(){
    int h, w; cin >> h >> w;
    vector<vector<int>> a(h+2, vector<int>(w+2, 0));
    for(int i=1; i<=h; i++) for(int j=1; j<=w; j++) cin >> a[i][j];

    int ans = 0;
    int di[8] = {-1, -1, -1, 0, 0, 1, 1, 1};
    int dj[8] = {-1, 0, 1, -1, 1, -1, 0, 1};
    vector<vector<bool>> visited(h+2, vector<bool>(w+2, false));
    for(int i0=0; i0<=h+1; i0++) for(int j0=0; j0<=w+1; j0++){
        if(!(i0==0 || i0==h+1 || j0==0 || j0==w+1)) continue;

        for(int i1=0; i1<=h+1; i1++) for(int j1=0; j1<=w+1; j1++){
            if(!(i1==0 || i1==h+1 || j1==0 || j1==w+1)) continue;

            for(int k0=0; k0<8; k0++) for(int k1=0; k1<8; k1++){
                int sum = 0;
                {
                    int now_i = i0, now_j = j0;
                    while(true){
                        now_i = now_i + di[k0], now_j = now_j + dj[k0];
                        if(now_i<=0 || now_i>=h+1 || now_j<=0 || now_j>=w+1) break;
                        sum += a[now_i][now_j];
                        visited[now_i][now_j] = true;
                    }
                }
                {
                    int now_i = i1, now_j = j1;
                    while(true){
                        now_i = now_i + di[k1], now_j = now_j + dj[k1];
                        if(now_i<=0 || now_i>=h+1 || now_j<=0 || now_j>=w+1) break;
                        if(!visited[now_i][now_j]) sum += a[now_i][now_j];
                    }
                }
                {
                    int now_i = i0, now_j = j0;
                    while(true){
                        now_i = now_i + di[k0], now_j = now_j + dj[k0];
                        if(now_i<=0 || now_i>=h+1 || now_j<=0 || now_j>=w+1) break;
                        visited[now_i][now_j] = false;
                    }
                }
                ans = max(ans, sum);
            }
        }
    }

    cout << ans << '\n';
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    int T=1;
    //cin >> T;
    while(T--) solve();
}
0