結果
問題 | No.45 回転寿司 |
ユーザー | Masanari KIMURA |
提出日時 | 2016-09-21 22:45:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,231 bytes |
コンパイル時間 | 1,442 ms |
コンパイル使用メモリ | 170,812 KB |
実行使用メモリ | 16,968 KB |
最終ジャッジ日時 | 2024-11-24 17:28:26 |
合計ジャッジ時間 | 176,687 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 2 ms
10,144 KB |
testcase_23 | AC | 2 ms
10,144 KB |
testcase_24 | AC | 2 ms
10,148 KB |
testcase_25 | AC | 1 ms
10,144 KB |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 2 ms
6,816 KB |
testcase_32 | AC | 2 ms
6,820 KB |
testcase_33 | TLE | - |
ソースコード
//#define _GRIBCXX_DEBUG #include <bits/stdc++.h> using namespace std; // 基本テンプレート #pragma region MACRO #define P(x) cout << (x) << endl #define p(x) cout << (x) #define PED cout << "\n" #define rep(i,n) for(int i=0; i<(int)n; ++i) #define REP(i,x,n) for(int i=x; i<(int)n; ++i) #define repi(i,n) for(int i=0; i<=(int)n; ++i) #define REPI(i,x,n) for(int i=x; i<=(int)n; ++i) #define ILP while(true) #define FOR(i,c) for(__typeof((c).begin())!=(c).begin(); i!=(c).end(); ++i) #define ALL(c) (c).begin(), (c).end() #define mp make_pair #pragma endregion // 型 #pragma region TYPE_DEF typedef long long ll; typedef pair<int, int> pii; typedef pair<string, string> pss; typedef pair<string, int> psi; typedef pair<int, string> pis; typedef vector<int> vi; typedef vector<double> vd; typedef vector<long double> vld; typedef vector<long> vl; typedef vector<long long> vll; typedef vector<string> vs; #pragma endregion // Effective std #pragma region ESTD template<typename C, typename T> int count(C& c, T t) { return count(ALL(c), t); } template<typename C, typename F> int count_if(C& c, F f) { return count_if(ALL(c), f); } template<typename C, typename T> void erase(C& c, T t) { remove(ALL(c), t), c.end(); } template<typename C> void remove(vector<C>& c, unsigned int index) { c.erase(c.begin()+index); } template<typename C, typename T, typename U> void replace(C& c, T t, U u) { replace(ALL(c), t, u); } template<typename C, typename F, typename U> void replace_if(C& c, F f, U u) { (ALL(c), f, u); } template<typename C> void reverse(C& c) { reverse(ALL(c)); } template<typename C> void sort(C& c) { sort(ALL(c)); } template<typename C, typename Pred> void sort(C& c, Pred p) { sort(ALL(c), p); } #pragma endregion // 定数 #pragma region CONST_VAL constexpr int PI = (2*acos(0.0)); constexpr int EPS = (1e-9); constexpr int MOD = (int)(1e9+7); constexpr int INF = 100000000; #pragma endregion int n; vi v; vi dp; int rec(int i) { if(dp[i]>0) return dp[i]; if(i>=n) return 0; return max(rec(i+2)+v[i], rec(i+1)); } int main() { cin >>n; rep(i, n) { int a; cin >> a; v.push_back(a); } dp.assign(10000, 0); P(max(rec(0), rec(1))); return 0; }