結果

問題 No.2157 崖
ユーザー lddlinanlddlinan
提出日時 2023-03-19 13:20:59
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
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