結果

問題 No.2509 Beam Shateki
ユーザー GOTKAKOGOTKAKO
提出日時 2023-10-20 21:43:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,538 bytes
コンパイル時間 1,841 ms
コンパイル使用メモリ 183,576 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-09-20 17:55:33
合計ジャッジ時間 9,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 320 ms
5,376 KB
testcase_04 AC 313 ms
5,376 KB
testcase_05 AC 308 ms
5,376 KB
testcase_06 AC 316 ms
5,376 KB
testcase_07 AC 319 ms
5,376 KB
testcase_08 AC 310 ms
5,376 KB
testcase_09 AC 311 ms
5,376 KB
testcase_10 AC 310 ms
5,376 KB
testcase_11 AC 319 ms
5,376 KB
testcase_12 AC 316 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 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 43 ms
5,376 KB
testcase_34 AC 631 ms
5,632 KB
testcase_35 AC 1,368 ms
7,040 KB
testcase_36 AC 234 ms
5,376 KB
testcase_37 AC 21 ms
5,376 KB
testcase_38 AC 306 ms
5,376 KB
testcase_39 AC 228 ms
5,376 KB
testcase_40 AC 750 ms
5,888 KB
testcase_41 AC 4 ms
5,376 KB
testcase_42 AC 315 ms
5,376 KB
testcase_43 AC 1,659 ms
7,680 KB
testcase_44 AC 1,995 ms
8,192 KB
testcase_45 AC 204 ms
5,376 KB
testcase_46 AC 453 ms
5,376 KB
testcase_47 TLE -
testcase_48 AC 538 ms
5,504 KB
testcase_49 AC 868 ms
6,272 KB
testcase_50 AC 1,084 ms
6,656 KB
testcase_51 AC 45 ms
5,376 KB
testcase_52 AC 649 ms
5,760 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 3 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:40:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   40 |         auto &[s1,p1] = beam.at(i);
      |               ^
main.cpp:42:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   42 |             auto &[s2,p2] = beam.at(k);
      |                   ^
main.cpp:45:22: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   45 |             for(auto [x,y] : s1){
      |                      ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;


int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int H,W; cin >> H >> W;
    vector<vector<int>> A(H,vector<int>(W));
    for(auto &h : A) for(auto &w : h) cin >> w; 
    if(H == 1 && W == 1){cout << A.at(0).at(0) << endl; return 0;}

    vector<pair<set<pair<int,int>>,int>> beam;
    for(int i=0; i<H; i++){
        for(int k=0; k<W; k++){
            if(!(i == 0 || i == H-1 || k == 0 || k == W-1)) continue;

            bool one = true;
            for(int a=-1; a<=1; a++) for(int b=-1; b<=1; b++){
                if(a == 0 && b == 0) continue;
                int x = i, y = k, p = 0;
                set<pair<int,int>> visit;
                while(true){
                    p += A.at(x).at(y);
                    visit.insert({x,y});

                    x += a; y += b;
                    if(x < 0 || x >= H || y < 0 || y >= W) break;
                }
                if(!one && visit.size() == 1) continue;
                if(one && visit.size() == 1) one = false;
                beam.push_back({visit,p});
            }
        }
    }

    int bs = beam.size(),answer = 0;
    for(int i=0; i<bs; i++){
        auto &[s1,p1] = beam.at(i); 
        for(int k=i+1; k<bs; k++){
            auto &[s2,p2] = beam.at(k);

            int now = p1+p2;
            for(auto [x,y] : s1){
                if(s2.count(make_pair(x,y))) now -= A.at(x).at(y);  
            }
            answer = max(answer,now);
        }
    }
    cout << answer << endl;
}
0