結果

問題 No.2639 Longest Increasing Walk
ユーザー tobbietobbie
提出日時 2024-05-07 21:32:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,050 bytes
コンパイル時間 1,917 ms
コンパイル使用メモリ 181,128 KB
実行使用メモリ 32,896 KB
最終ジャッジ日時 2024-05-07 21:33:01
合計ジャッジ時間 6,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 117 ms
7,244 KB
testcase_05 AC 198 ms
32,896 KB
testcase_06 AC 200 ms
32,384 KB
testcase_07 AC 249 ms
32,384 KB
testcase_08 AC 225 ms
32,512 KB
testcase_09 AC 268 ms
32,640 KB
testcase_10 AC 219 ms
20,096 KB
testcase_11 AC 202 ms
18,432 KB
testcase_12 AC 21 ms
6,940 KB
testcase_13 AC 241 ms
21,248 KB
testcase_14 AC 124 ms
13,696 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 40 ms
6,944 KB
testcase_18 AC 156 ms
15,616 KB
testcase_19 AC 31 ms
6,940 KB
testcase_20 AC 83 ms
10,880 KB
testcase_21 AC 194 ms
18,176 KB
testcase_22 AC 57 ms
8,960 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)(n); i++)

struct Grid {
  int h;
  int w;
  Grid (int h, int w) : h(h), w(w) {}
};

struct Walk {
  int val;
  int length;
  Walk (int val, int length) : val(val), length(length) {}
};

int main() {
  int H, W;
  cin >> H >> W;
  map<int, vector<Grid>> g;
  rep(h, H) rep(w, W) {
    int val;
    cin >> val;
    g[val].push_back(Grid(h, w));
  }
  vector<int> dh = {0, 1, 0, -1};
  vector<int> dw = {1, 0, -1, 0};
  vector<vector<Walk>> dp(H, vector<Walk> (W, Walk(0, 0)));
  int length = 0;
  for (auto it = g.begin(); it != g.end(); it++) {
    int val = it->first;
    for (Grid p : it->second) {
      int len = -1;
      rep(i, 4) {
	int nh = p.h + dh[i];
	int nw = p.w + dw[i];
	if (nh < 0 || nh > H-1 || nw < 0 || nw > W-1) continue;
	if (dp[nh][nw].val < val)
	  len = max(dp[nh][nw].length, len);
      }
      if (len >= 0) {
	dp[p.h][p.w] = {val, len + 1};
	length = max(len + 1, length);
      }
    }
  }
  cout << length << endl;
  return 0;
}
0