結果
問題 | No.1668 Grayscale |
ユーザー | sapphire__15 |
提出日時 | 2021-09-04 13:50:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,114 ms / 4,000 ms |
コード長 | 2,438 bytes |
コンパイル時間 | 1,475 ms |
コンパイル使用メモリ | 142,532 KB |
実行使用メモリ | 87,168 KB |
最終ジャッジ日時 | 2024-05-10 03:00:53 |
合計ジャッジ時間 | 6,042 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 471 ms
81,536 KB |
testcase_07 | AC | 476 ms
81,408 KB |
testcase_08 | AC | 146 ms
7,424 KB |
testcase_09 | AC | 1,114 ms
87,168 KB |
testcase_10 | AC | 327 ms
34,432 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 33 ms
8,320 KB |
testcase_14 | AC | 125 ms
18,304 KB |
testcase_15 | AC | 62 ms
10,112 KB |
testcase_16 | AC | 41 ms
7,552 KB |
testcase_17 | AC | 23 ms
6,528 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <map> #include <set> #include <queue> #include <bitset> #include <climits> #include <cmath> #include <complex> #include <functional> #include <cassert> #include <stack> #include <numeric> #include <iomanip> #include <limits> #include <random> #include <unordered_map> #include <unordered_set> #include <chrono> #include <cstring> typedef long long ll; typedef std::pair<int, int> Pii; typedef std::pair<ll, ll> Pll; typedef std::pair<double, double> Pdd; #define rip(_i, _n, _s) for (int _i = (_s); _i < (int)(_n); _i++) #define all(_l) _l.begin(), _l.end() #define rall(_l) _l.rbegin(), _l.rend() #define MM << " " << template<typename _T> using MaxHeap = std::priority_queue<_T>; template<typename _T> using MinHeap = std::priority_queue<_T, std::vector<_T>, std::greater<_T>>; template<typename _T> inline bool chmax(_T &_l, const _T _b) { if (_b > _l) { _l = _b; return true; } return false; } template<typename _T> inline bool chmin(_T &_l, const _T _b) { if (_l > _b) { _l = _b; return true; } return false; } template<typename _T> void vdeb(const std::vector<_T> &bb) { for (unsigned int i = 0;i < bb.size();i++) { if (i == bb.size() - 1) std::cout << bb[i]; else std::cout << bb[i] << ' '; } std::cout << '\n'; } template<typename _T> void vdeb(const std::vector<std::vector<_T>> &bb) { for (unsigned int i = 0;i < bb.size();i++) { std::cout << i << ": "; vdeb(bb[i]); } std::cout << '\n'; } using namespace std; int dx[] = {0, 1, 0, -1, 0}; int main() { int h, w, n; cin >> h >> w >> n; vector<vector<int>> da(h, vector<int>(w)); rip(i,h,0) rip(j, w,0) cin >> da[i][j]; auto in_grid = [h, w](int x, int y) { return 0 <= x && x < h && 0 <= y && y < w; }; vector<vector<pair<int, bool>>> ed(n, vector<pair<int, bool>>(0)); rip(i,n,1) { ed[i-1].push_back({i, false}); } rip(i,h,0) rip(j,w,0) { rip(k,4,0) { int nx = i + dx[k], ny = j + dx[k+1]; if(in_grid(nx, ny) && da[i][j] < da[nx][ny]) ed[da[i][j]-1].push_back({da[nx][ny]-1, true}); } } vector<int> dp(n, 1); rip(i,n-1,0) { for(auto &j : ed[i]) { if(j.second) chmax(dp[j.first], dp[i]+1); else chmax(dp[j.first], dp[i]); } } cout << dp.back() << endl; }