結果
| 問題 | No.3596 Queen Score Attack 1 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-07-25 01:34:10 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 63 ms / 2,000 ms |
| + 758µs | |
| コード長 | 892 bytes |
| 記録 | |
| コンパイル時間 | 2,490 ms |
| コンパイル使用メモリ | 336,744 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-25 01:34:16 |
| 合計ジャッジ時間 | 4,953 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 31 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)
#define all(x) begin(x), end(x)
template <class T> bool chmin(T& x, T y) {
return x > y ? (x = y, true) : false;
}
template <class T> bool chmax(T& x, T y) {
return x < y ? (x = y, true) : false;
}
void solve() {
int h, w;
cin >> h >> w;
vector a(h, vector<int>(w));
rep(i, 0, h) rep(j, 0, w) cin >> a[i][j];
rep(i0, 0, h) rep(j0, 0, w) {
rep(i1, i0, h) rep(j1, 0, w) {
if (i0 * w + j0 >= i1 * w + j1) continue;
if (i0 == i1 || j0 == j1 || i0 + j0 == i1 + j1 ||
i0 - j0 == i1 - j1) {
if (a[i0][j0] + a[i1][j1] > 0) {
cout << "infinite \n";
return;
}
}
}
}
cout << "finite\n";
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout << fixed << setprecision(15);
int t = 1;
cin >> t;
while (t--) solve();
}