結果

問題 No.2157 崖
ユーザー ripityripity
提出日時 2022-12-09 23:37:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 924 bytes
コンパイル時間 2,995 ms
コンパイル使用メモリ 222,556 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-10-14 23:08:10
合計ジャッジ時間 17,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 5,816 ms
13,696 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N, M;
    cin >> N >> M;
    constexpr int INF = 1<<30;
    vector<vector<int>> D(N, vector<int>(M)), dp(N, vector<int>(M, INF));
    for( int i = 0; i < N; i++ ) {
        for( int j = 0; j < M; j++ ) {
            cin >> D[i][j];
        }
    }
    for( int j = 0; j < M; j++ ) {
        dp[0][j] = 0;
    }
    for( int i = 0; i < N-1; i++ ) {
        for( int j = 0; j < M; j++ ) {
            for( int k = 0; k < M; k++ ) {
                if( D[i+1][k]-D[i][j] < 0 || dp[i][j] == INF ) continue;
                dp[i+1][k] = min(dp[i+1][k], max(dp[i][j], D[i+1][k]-D[i][j]));
            }
        }
    }
    int me = *min_element(dp[N-1].begin(), dp[N-1].end());
    cout << ( me == INF ? -1 : me ) << endl;
}
0