結果
問題 | No.2639 Longest Increasing Walk |
ユーザー | tobbie |
提出日時 | 2024-05-07 17:25:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 881 bytes |
コンパイル時間 | 2,000 ms |
コンパイル使用メモリ | 178,012 KB |
実行使用メモリ | 184,956 KB |
最終ジャッジ日時 | 2024-05-07 17:25:39 |
合計ジャッジ時間 | 6,326 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) int main() { int H, W; cin >> H >> W; vector<vector<int>> A(H, vector<int> (W)); rep(h, H) rep(w, W) cin >> A[h][w]; vector<int> dh = {0, 1, 0, -1}; vector<int> dw = {1, 0, -1, 0}; auto dfs = [&](auto dfs, int x, int y, int l, vector<vector<bool>> f) -> int { f[x][y] = true; int nl = l; rep(i, 4) { int nx = x + dh[i]; int ny = y + dw[i]; if (nx < 0 || nx >= H || ny < 0 || ny >= W) continue; if (f[nx][ny]) continue; if (A[nx][ny] <= A[x][y]) continue; nl = max(dfs(dfs, nx, ny, l+1, f), nl); } return nl; }; int maxLen = 0; rep(h, H) rep(w, W) { vector<vector<bool>> f(H, vector<bool> (W, false)); maxLen = max(dfs(dfs, h, w, 1, f), maxLen); } cout << maxLen << endl; return 0; }