結果
問題 | No.2639 Longest Increasing Walk |
ユーザー | KKT89 |
提出日時 | 2024-02-19 21:53:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 56 ms / 2,000 ms |
コード長 | 1,534 bytes |
コンパイル時間 | 2,828 ms |
コンパイル使用メモリ | 226,532 KB |
実行使用メモリ | 8,432 KB |
最終ジャッジ日時 | 2024-09-29 01:52:20 |
合計ジャッジ時間 | 4,594 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 48 ms
8,140 KB |
testcase_05 | AC | 45 ms
8,432 KB |
testcase_06 | AC | 47 ms
8,164 KB |
testcase_07 | AC | 56 ms
8,116 KB |
testcase_08 | AC | 48 ms
8,260 KB |
testcase_09 | AC | 55 ms
8,264 KB |
testcase_10 | AC | 38 ms
7,076 KB |
testcase_11 | AC | 33 ms
6,816 KB |
testcase_12 | AC | 7 ms
6,820 KB |
testcase_13 | AC | 41 ms
7,112 KB |
testcase_14 | AC | 25 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 3 ms
6,820 KB |
testcase_17 | AC | 26 ms
6,816 KB |
testcase_18 | AC | 28 ms
6,820 KB |
testcase_19 | AC | 9 ms
6,816 KB |
testcase_20 | AC | 17 ms
6,820 KB |
testcase_21 | AC | 33 ms
6,820 KB |
testcase_22 | AC | 12 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,820 KB |
testcase_24 | AC | 2 ms
6,820 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 1 ms
6,816 KB |
testcase_29 | AC | 2 ms
6,820 KB |
testcase_30 | AC | 2 ms
6,820 KB |
testcase_31 | AC | 2 ms
6,820 KB |
testcase_32 | AC | 2 ms
6,816 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef unsigned long long int ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } inline double time() { return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int h,w; cin >> h >> w; vector<vector<int>> a(h, vector<int>(w)); vector<pair<int,pair<int,int>>> v; for (int i = 0; i < h; ++i) { for (int j = 0; j < w; ++j) { cin >> a[i][j]; v.push_back({a[i][j], {i, j}}); } } sort(v.begin(), v.end()); vector<vector<int>> d(h, vector<int>(w, -1)); for (int i = 0; i < v.size(); ++i) { auto [x, y] = v[i].second; d[x][y] = 0; if (x and a[x-1][y] < a[x][y]) { d[x][y] = max(d[x][y], d[x-1][y]+1); } if (x+1 < h and a[x+1][y] < a[x][y]) { d[x][y] = max(d[x][y], d[x+1][y]+1); } if (y and a[x][y-1] < a[x][y]) { d[x][y] = max(d[x][y], d[x][y-1]+1); } if (y+1 < w and a[x][y+1] < a[x][y]) { d[x][y] = max(d[x][y], d[x][y+1]+1); } } int res = 0; for (int i = 0; i < h; ++i) { for (int j = 0; j < w; ++j) { res = max(res, d[i][j]); } } cout << res+1 << endl; }