結果

問題 No.2157 崖
ユーザー lddlinanlddlinan
提出日時 2023-03-19 13:20:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,839 ms / 6,000 ms
コード長 1,609 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 89,028 KB
実行使用メモリ 14,116 KB
最終ジャッジ日時 2024-09-18 13:46:20
合計ジャッジ時間 13,340 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1,368 ms
13,420 KB
testcase_14 AC 333 ms
13,960 KB
testcase_15 AC 1,391 ms
11,964 KB
testcase_16 AC 1,474 ms
13,728 KB
testcase_17 AC 286 ms
13,716 KB
testcase_18 AC 285 ms
13,792 KB
testcase_19 AC 1,839 ms
13,644 KB
testcase_20 AC 376 ms
13,952 KB
testcase_21 AC 369 ms
14,116 KB
testcase_22 AC 266 ms
13,792 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 6 ms
13,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'char check(int)':
main.cpp:32:37: warning: 'void* __builtin_memset(void*, int, long unsigned int)' writing between 1 and 2147483647 bytes into a region of size 0 overflows the destination [-Wstringop-overflow=]
   32 |     for (j=0; j<gm; j++) dp[gn-1][j]=1;
      |                          ~~~~~~~~~~~^~
main.cpp:27:6: note: at offset [-3229815406592, -1504] into destination object 'dp' of size 2262016
   27 | char dp[1504][1504];
      |      ^~

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <stack>
#include <algorithm>
#include <array>
#include <unordered_set>
#include <unordered_map>
#include <string>
using namespace std;

bool rcmp(int a, int b) { return a>b; }
typedef long long LL;
class mypcmp {
public:
    bool operator()(const int& a, const int& b) {
        return a<b;
    }
};

int gn, gm;
char dp[1504][1504];
int as[1504][1504];
char check(int d) {
    int i, j, s, e, c;
    for (i=0; i<gn; i++) for (j=0; j<gm; j++) dp[i][j]=0;
    for (j=0; j<gm; j++) dp[gn-1][j]=1;
    for (i=gn-2; i>=0; i--) {
        s=e=0; c=0;
        for (j=0; j<gm; j++) {
            dp[i][j]=0;
            while(e<gm&&as[i+1][e]<=as[i][j]+d) {
                c+=dp[i+1][e];
                e++;
            }
            while(s<e&&as[i+1][s]<as[i][j]) {
                c-=dp[i+1][s];
                s++;
            }
            if (c) dp[i][j]=1;
        }
    }
    for (j=0; j<gm; j++) if(dp[0][j]) return 1;
    return 0;
}

int main() {
    int n, i, mx, r, d, nr, j, m;
    scanf("%d %d", &n, &m); gn=n; gm=m;
    for (i=0; i<n; i++) {
        for (j=0; j<m; j++) scanf("%d", &as[i][j]);
        sort(as[i], as[i]+m);
    }
    mx = 1000000000;
    if (check(mx)) {
        r=mx; d=mx;
        while(d) {
            while(1) {
                nr=r-d; if (nr<0) break;
                if (check(nr)==0) break;
                r=nr;
            }
            d>>=1;
        }
        printf("%d\n", r);
    } else printf("-1\n");
    return 0;
}
0