結果

問題 No.3596 Queen Score Attack 1
コンテスト
ユーザー t0yama
提出日時 2026-07-24 21:06:01
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.90.0)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 1,661 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 3,089 ms
コンパイル使用メモリ 356,932 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-07-24 21:06:06
合計ジャッジ時間 4,150 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 11 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
#define ull unsigned ll
#define ll long long
#define ld long double
#define INFL (ll)3e18
#define INF (int)2e9
#define MOD (ll)998244353
#define MODO (ll)(1e9+7)
using namespace std;

template<typename T>istream&operator>>(istream&is,vector<T>&v);
template<typename... Ts>istream&operator>>(istream&is,tuple<Ts...>& t);
template<typename T1,typename T2>istream&operator>>(istream&is,pair<T1,T2>&p){is>>p.first>>p.second;return is;}
template<typename T>istream&operator>>(istream&is,vector<T>&v){for(T&in:v)is>>in;return is;}
template<typename... Ts>istream& operator>>(istream& is, tuple<Ts...>& t) {apply([&](auto&... args) {((is >> args), ...);},t);return is;}

int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int t;
    cin >> t;
    while(t--){
        int h,w;
        cin >> h >> w;
        vector<vector<ll>> a(h,vector<ll>(w));
        cin >> a;
        ll ma = 0;
        for(int i = 0;i < h;i++){
            for(int j = 0;j < w;j++){
                for(int k = 0;k < j;k++){
                    ma = max(ma,a[i][j]+a[i][k]);
                }
            }
        }
        for(int i = 0;i < h;i++){
            for(int j = 0;j < w;j++){
                for(int k = 0;k < i;k++){
                    ma = max(ma,a[i][j]+a[k][j]);
                }
            }
        }
        for(int i = 0;i < h;i++){
            for(int j = 0;j < w;j++){
                for(int k = 0;i+k<h&&j+k<w;k++){
                    ma = max(ma,a[i][j]+a[i+k][j+k]);
                }
            }
        }
        
        if(ma > 0) cout << "infinite" << endl;
        else cout << "finite" << endl;
    }
}
0