結果

問題 No.2157 崖
ユーザー tokumini_sstokumini_ss
提出日時 2022-12-09 22:10:41
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 4,639 ms / 6,000 ms
コード長 1,385 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 215,552 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-10-14 22:09:53
合計ジャッジ時間 40,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int64_t N, M;
    cin >> N >> M;

    vector<vector<int64_t>> D(N, vector<int64_t>(M));
    for (int64_t i = 0; i < N; i++) {
        for (int64_t j = 0; j < M; j++) {
            cin >> D[i][j];
        }
        sort(D[i].begin(), D[i].end());
    }

    // // -1であるかどうか判定
    // int64_t pre_value = 0;
    // for (int64_t i = 0; i < N; i++) {
    //     auto itr = lower_bound(D[i].begin(), D[i].end(), pre_value);
    //     if (itr == D[i].end()) {
    //         assert(false);
    //         cout << -1 << endl;
    //         return 0;
    //     }
    //     pre_value = *itr;
    // }

    // 二分探索
    const int64_t kInf = 2e9;
    int64_t ok = kInf, ng = -1;
    while (ok - ng != 1) {
        const int64_t mid = (ok + ng) / 2;
        set<int64_t> st;
        for (int64_t j = 0; j < M; j++) {
            st.insert(D[0][j]);
        }

        for (int64_t i = 1; i < N; i++) {
            set<int64_t> new_st;
            for (int64_t j = 0; j < M; j++) {
                auto itr = st.lower_bound(D[i][j] - mid);
                if (itr != st.end() && *itr <= D[i][j]) {
                    new_st.insert(D[i][j]);
                }
            }
            st = new_st;
        }

        (st.empty() ? ng = mid : ok = mid);
    }

    cout << (ok == kInf ? -1 : ok) << endl;
}
0