結果

問題 No.2157 崖
ユーザー みここみここ
提出日時 2022-12-10 19:57:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5,286 ms / 6,000 ms
コード長 939 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-10-14 23:52:47
合計ジャッジ時間 41,305 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3,199 ms
15,488 KB
testcase_14 AC 4,406 ms
20,992 KB
testcase_15 AC 2,835 ms
16,768 KB
testcase_16 AC 2,927 ms
16,640 KB
testcase_17 AC 3,570 ms
19,328 KB
testcase_18 AC 3,431 ms
19,072 KB
testcase_19 AC 4,239 ms
17,152 KB
testcase_20 AC 5,286 ms
20,608 KB
testcase_21 AC 5,157 ms
20,736 KB
testcase_22 AC 3,259 ms
18,560 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 10 ms
15,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
using namespace std;

const int INF = 1000000007;

int d[1505][1505];
int dp[1505][1505];

int main()
{
    int n, m;
    cin >> n >> m;
    for(int i = 0; i < n; i++)
    {
        for(int j = 0; j < m; j++)
        {
            cin >> d[i][j];
        }
        sort(d[i], d[i] + m);
    }
    for(int i = 1; i < n; i++)
    {
        for(int j = 0; j < m; j++)
        {
            dp[i][j] = INF;
        }
    }
    for(int i = 1; i < n; i++)
    {
        for(int j = 0; j < m; j++)
        {
            for(int k = 0; k < m; k++)
            {
                if(d[i][j] >= d[i - 1][k])
                {
                    dp[i][j] = min(dp[i][j], max(dp[i - 1][k], d[i][j] - d[i - 1][k]));
                }
            }
        }
    }
    int ans = INF;
    for(int j = 0; j < m; j++)
    {
        ans = min(ans, dp[n - 1][j]);
    }
    cout << (ans == INF ? -1 : ans) << endl;
}
0