結果
問題 | No.949 飲酒プログラミングコンテスト |
ユーザー | zeke |
提出日時 | 2019-12-16 15:36:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,953 bytes |
コンパイル時間 | 940 ms |
コンパイル使用メモリ | 104,608 KB |
実行使用メモリ | 73,856 KB |
最終ジャッジ日時 | 2024-07-02 19:45:11 |
合計ジャッジ時間 | 7,034 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 66 ms
11,264 KB |
testcase_18 | RE | - |
testcase_19 | AC | 203 ms
53,632 KB |
testcase_20 | AC | 37 ms
13,568 KB |
testcase_21 | AC | 10 ms
7,552 KB |
testcase_22 | WA | - |
testcase_23 | AC | 3 ms
6,944 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | WA | - |
testcase_30 | AC | 146 ms
73,728 KB |
testcase_31 | RE | - |
testcase_32 | RE | - |
ソースコード
/* Author:zeke pass System Test! GET AC!! */ #include <iostream> #include <queue> #include <vector> #include <iostream> #include <vector> #include <string> #include <cassert> #include <algorithm> #include <functional> #include <cmath> #include <queue> #include <set> #include <stack> #include <deque> #include <map> #include <iomanip> #include <math.h> #include <utility> #include <stack> #include <bitset> using ll = long long; using ld = long double; using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define all(x) (x).begin(), (x).end() #define rep3(var, min, max) for (ll(var) = (min); (var) < (max); ++(var)) #define repi3(var, min, max) for (ll(var) = (max)-1; (var) + 1 > (min); --(var)) #define Mp(a, b) make_pair((a), (b)) #define F first #define S second #define Icin(s) \ ll(s); \ cin >> (s); #define Scin(s) \ ll(s); \ cin >> (s); template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; } typedef pair<ll, ll> P; typedef vector<ll> V; typedef vector<V> VV; typedef vector<P> VP; ll mod = 1e9 + 7; unsigned long long MOD = 1e9 + 7; ll INF = 1e18; int main() { cin.tie(0); ios::sync_with_stdio(false); ll n; cin >> n; V ken(n + 1); V koo(n + 1); V score(n); rep(i, n + 1) cin >> ken[i]; rep(i, n + 1) cin >> koo[i]; rep(i, n) cin >> score[i]; sort(all(score)); // rep(i,n)cout<<score[i]<<" "; // cout<<endl; vector<vector<ll>> dp(n + 1, vector<ll>(n + 1, 0)); // cout<<score[0]<<endl; rep(i, n + 1) { rep(j, n + 1) { // cout<<ken[i]<<" "<<koo[j]<<" "<<score[i+j-1]<<" "; if (i + j > n) continue; if (i == 0 && j == 0){ dp[i][j] = 1e18; continue; } ll k = upper_bound(all(score), ken[i] + koo[j]) - score.begin(); // cout<<k<<endl; if(k==0) continue; else if (i == 0 && dp[i][j - 1]){ while(dp[i][j-1]<=score[k-1])k--; if(k<0)continue; dp[i][j] = score[k-1]; }else if (j == 0){ while(dp[i-1][j]<=score[k-1])k--; if(k<0)continue; dp[i][j] = score[k-1]; }else if (dp[i][j - 1] || dp[i - 1][j]){ while(dp[i-1][j]<=score[k-1]||dp[i][j-1]<=score[k-1])k--; if(k<0)continue; dp[i][j] = score[k-1]; } } } ll res = 0; rep(i, n + 1) { rep(j, n + 1) { // cout << dp[i][j] << " "; if (dp[i][j]) chmax(res, (ll)i + j); } // cout << endl; } cout << res << endl; }