結果

問題 No.2509 Beam Shateki
ユーザー maeshunmaeshun
提出日時 2023-10-20 22:03:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,905 ms / 2,000 ms
コード長 2,721 bytes
コンパイル時間 3,659 ms
コンパイル使用メモリ 243,100 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 19:04:29
合計ジャッジ時間 55,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 263 ms
6,944 KB
testcase_04 AC 259 ms
6,940 KB
testcase_05 AC 263 ms
6,940 KB
testcase_06 AC 251 ms
6,940 KB
testcase_07 AC 245 ms
6,944 KB
testcase_08 AC 251 ms
6,944 KB
testcase_09 AC 250 ms
6,940 KB
testcase_10 AC 253 ms
6,944 KB
testcase_11 AC 246 ms
6,944 KB
testcase_12 AC 253 ms
6,944 KB
testcase_13 AC 1,888 ms
6,944 KB
testcase_14 AC 1,876 ms
6,944 KB
testcase_15 AC 1,874 ms
6,944 KB
testcase_16 AC 1,868 ms
6,944 KB
testcase_17 AC 1,850 ms
6,940 KB
testcase_18 AC 1,865 ms
6,940 KB
testcase_19 AC 1,894 ms
6,944 KB
testcase_20 AC 1,840 ms
6,944 KB
testcase_21 AC 1,869 ms
6,940 KB
testcase_22 AC 1,905 ms
6,944 KB
testcase_23 AC 1,887 ms
6,940 KB
testcase_24 AC 1,848 ms
6,944 KB
testcase_25 AC 1,865 ms
6,940 KB
testcase_26 AC 1,866 ms
6,940 KB
testcase_27 AC 1,886 ms
6,940 KB
testcase_28 AC 1,897 ms
6,940 KB
testcase_29 AC 1,867 ms
6,944 KB
testcase_30 AC 1,866 ms
6,940 KB
testcase_31 AC 1,872 ms
6,940 KB
testcase_32 AC 1,851 ms
6,940 KB
testcase_33 AC 37 ms
6,944 KB
testcase_34 AC 443 ms
6,940 KB
testcase_35 AC 920 ms
6,940 KB
testcase_36 AC 197 ms
6,944 KB
testcase_37 AC 25 ms
6,940 KB
testcase_38 AC 220 ms
6,940 KB
testcase_39 AC 200 ms
6,944 KB
testcase_40 AC 535 ms
6,944 KB
testcase_41 AC 6 ms
6,944 KB
testcase_42 AC 278 ms
6,944 KB
testcase_43 AC 1,165 ms
6,944 KB
testcase_44 AC 1,382 ms
6,944 KB
testcase_45 AC 177 ms
6,940 KB
testcase_46 AC 382 ms
6,944 KB
testcase_47 AC 1,364 ms
6,940 KB
testcase_48 AC 400 ms
6,940 KB
testcase_49 AC 728 ms
6,944 KB
testcase_50 AC 752 ms
6,940 KB
testcase_51 AC 42 ms
6,944 KB
testcase_52 AC 489 ms
6,944 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 AC 2 ms
6,940 KB
testcase_56 AC 2 ms
6,940 KB
testcase_57 AC 2 ms
6,940 KB
testcase_58 AC 2 ms
6,940 KB
testcase_59 AC 2 ms
6,944 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 2 ms
6,940 KB
testcase_63 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:38:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   38 |         auto [x_1, y_1] = vs[i];
      |              ^
main.cpp:39:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   39 |         auto [x_2, y_2] = vs[j];
      |              ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int h, w;
    cin >> h >> w;
    vector<vector<int>> a(h, vector<int>(w));
    rep(i,h)rep(j,w) cin >> a[i][j];
    ll ans = 0;
    vector<pair<int,int>> vs;
    rep(i,w) vs.emplace_back(0,i);
    rep(j,h) vs.emplace_back(j,0);
    rep(i,w) vs.emplace_back(h-1,i);
    rep(i,h) vs.emplace_back(i,w-1);
    sort(vs.begin(),vs.end());
    vs.erase(unique(vs.begin(),vs.end()), vs.end());
    int n = vs.size();
    vector<vector<bool>> used(h, vector<bool>(w));
    rep(i,n){
      rep(j,i+1){
        auto [x_1, y_1] = vs[i];
        auto [x_2, y_2] = vs[j];
        for(int dx=-1;dx<=1;dx++){
          for(int dy=-1;dy<=1;dy++){
            if(dx==0 && dy==0) continue;
            for(int ex=-1;ex<=1;ex++){
              for(int ey=-1;ey<=1;ey++){
                if(ex==0 && ey==0) continue;
                ll sum = 0;
                set<pair<int, int>> st;
                int x1 = x_1;
                int y1 = y_1;
                int x2 = x_2;
                int y2 = y_2;
                while(true){
                  if(x1<0 || x1>=h || y1<0 || y1>=w) break;
                  if(!used[x1][y1]) sum += a[x1][y1];
                  used[x1][y1] = true;
                  x1 += dx;
                  y1 += dy;
                }
                while(true){
                  if(x2<0 || x2>=h || y2<0 || y2>=w) break;
                  if(!used[x2][y2]) sum += a[x2][y2];
                  used[x2][y2] = true;
                  x2 += ex;
                  y2 += ey;
                }
                x1 = x_1;
                y1 = y_1;
                x2 = x_2;
                y2 = y_2;
                while(true){
                  if(x1<0 || x1>=h || y1<0 || y1>=w) break;
                  used[x1][y1] = false;
                  x1 += dx;
                  y1 += dy;
                }
                while(true){
                  if(x2<0 || x2>=h || y2<0 || y2>=w) break;
                  used[x2][y2] = false;
                  x2 += ex;
                  y2 += ey;
                }
                ans = max(ans, sum);
              }
            }
          }
        }
      }
    }
    cout << ans << endl;
    return 0;
}
0