結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー tko919tko919
提出日時 2019-12-13 19:47:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 381 ms / 2,500 ms
コード長 1,043 bytes
コンパイル時間 1,926 ms
コンパイル使用メモリ 171,920 KB
実行使用メモリ 39,040 KB
最終ジャッジ日時 2024-06-27 14:14:06
合計ジャッジ時間 7,209 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 214 ms
33,280 KB
testcase_12 AC 223 ms
33,536 KB
testcase_13 AC 193 ms
31,744 KB
testcase_14 AC 29 ms
10,368 KB
testcase_15 AC 117 ms
28,160 KB
testcase_16 AC 206 ms
37,248 KB
testcase_17 AC 50 ms
11,776 KB
testcase_18 AC 360 ms
38,144 KB
testcase_19 AC 154 ms
33,408 KB
testcase_20 AC 34 ms
13,312 KB
testcase_21 AC 12 ms
8,704 KB
testcase_22 AC 24 ms
12,544 KB
testcase_23 AC 5 ms
5,504 KB
testcase_24 AC 222 ms
29,056 KB
testcase_25 AC 298 ms
38,932 KB
testcase_26 AC 300 ms
38,888 KB
testcase_27 AC 223 ms
38,960 KB
testcase_28 AC 381 ms
39,036 KB
testcase_29 AC 216 ms
38,912 KB
testcase_30 AC 152 ms
38,868 KB
testcase_31 AC 120 ms
38,880 KB
testcase_32 AC 257 ms
39,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//template
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(a);i>(b);i--)
#define ALL(v) (v).begin(),(v).end()
typedef long long int ll; const int inf = 0x3fffffff; const ll INF = 0x3fffffffffffffff;
template<class T> inline bool chmax(T& a,T b){ if(a<b){a=b;return 1;}return 0; }
template<class T> inline bool chmin(T& a,T b){ if(a>b){a=b;return 1;}return 0; }
//template end

int dp[3010][3010];

int main(){
    int n; scanf("%d",&n);
    vector<int> a(n+1),b(n+1),d(n);
    rep(i,0,n+1)scanf("%d",&a[i]);
    rep(i,0,n+1)scanf("%d",&b[i]);
    rep(i,0,n)scanf("%d",&d[i]); sort(ALL(d)); dp[0][0]=inf;
    rep(i,0,n+1)rep(j,0,n+1){
        if(i==0&&j==0)continue;
        int idx=upper_bound(ALL(d),a[i]+b[j])-d.begin()-1,ma=0;
        if(i)chmax(ma,dp[i-1][j]); if(j)chmax(ma,dp[i][j-1]);
        dp[i][j]=min(idx,ma-1);
    }
    int ans=0;
    rep(i,0,n+1)rep(j,0,n+1)if(dp[i][j]>=0)chmax(ans,i+j);
    printf("%d\n",ans);
    return 0;
}
0