結果

問題 No.2157 崖
ユーザー ripityripity
提出日時 2022-12-09 22:48:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 938 bytes
コンパイル時間 3,355 ms
コンパイル使用メモリ 227,496 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-10-14 22:39:29
合計ジャッジ時間 33,526 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,248 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,248 KB
testcase_13 WA -
testcase_14 AC 3,179 ms
18,048 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2,517 ms
15,872 KB
testcase_18 AC 2,413 ms
15,488 KB
testcase_19 WA -
testcase_20 AC 3,852 ms
19,328 KB
testcase_21 AC 3,720 ms
19,200 KB
testcase_22 AC 2,444 ms
14,976 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

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;
    vector<vector<int>> D(N, vector<int>(M));
    for( int i = 0; i < N; i++ ) {
        for( int j = 0; j < M; j++ ) {
            cin >> D[i][j];
        }
        sort(D[i].begin(), D[i].end());
    }
    constexpr int INF = 1<<30;
    vector<vector<int>> dp(N, vector<int>(M, INF));
    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] || ( i > 0 && dp[i][j] == INF ) ) continue;
                dp[i+1][k] = min({dp[i+1][k], dp[i][j], abs(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