結果
問題 | No.949 飲酒プログラミングコンテスト |
ユーザー | rhincodon66 |
提出日時 | 2019-12-12 01:14:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,274 bytes |
コンパイル時間 | 2,043 ms |
コンパイル使用メモリ | 178,032 KB |
実行使用メモリ | 38,784 KB |
最終ジャッジ日時 | 2024-06-24 08:14:08 |
合計ジャッジ時間 | 4,364 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 76 ms
28,416 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 51 ms
20,480 KB |
testcase_16 | AC | 90 ms
35,328 KB |
testcase_17 | AC | 14 ms
7,168 KB |
testcase_18 | AC | 104 ms
37,120 KB |
testcase_19 | AC | 64 ms
28,544 KB |
testcase_20 | AC | 15 ms
8,448 KB |
testcase_21 | AC | 6 ms
6,940 KB |
testcase_22 | AC | 9 ms
7,808 KB |
testcase_23 | AC | 3 ms
6,944 KB |
testcase_24 | AC | 58 ms
21,760 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 97 ms
38,784 KB |
testcase_28 | AC | 112 ms
38,784 KB |
testcase_29 | AC | 91 ms
38,528 KB |
testcase_30 | AC | 54 ms
38,656 KB |
testcase_31 | AC | 35 ms
38,400 KB |
testcase_32 | AC | 103 ms
38,656 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef pair<long long,long long> pll; #define ep emplace_back #define pb push_back #define mp make_pair #define rep(i,n) for(int i=0;i<(n);++i) constexpr int mod=1000000007; constexpr int mod1=998244353; vector<int> dx={0,1,0,-1},dy={-1,0,1,0}; bool inside(int y,int x,int h,int w){ if(y<h && y>=0 && x<w && x>=0) return true; return false; } int n; vector<int> a,b,d; vector<vector<int>> dp; int dfs(int A, int B, int k){ if(dp[A][B] != -1) return dp[A][B]; int ans = 0; if(A < n){ int t = a.at(A + 1) + b.at(B); int k1 = k; while(k1 < n && d.at(k1) > t) k1++; if(k1 < n) ans = dfs(A + 1, B, k1 + 1) + 1; } if(B < n){ int t = a.at(A) + b.at(B + 1); int k1 = k; while(k1 < n && d.at(k1) > t) k1++; if(k1 < n) ans = max(ans,dfs(A, B + 1, k1 + 1) + 1); } return dp[A][B] = ans; } int main(){ cin.tie(0); ios::sync_with_stdio(false); cin >> n; a.resize(n + 1); b.resize(n + 1); d.resize(n); dp.resize(n + 1); rep(i,n + 1) cin >> a.at(i); rep(i,n + 1) cin >> b.at(i); rep(i,n + 1){ dp.at(i).resize(n + 1); rep(j,n + 1) dp[i][j] = -1; } rep(i,n) cin >> d.at(i); sort(d.rbegin(),d.rend()); int ans = dfs(0,0,0); cout << ans << endl; }