結果
問題 | No.45 回転寿司 |
ユーザー | heabi |
提出日時 | 2020-11-21 05:14:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 503 ms / 5,000 ms |
コード長 | 1,873 bytes |
コンパイル時間 | 1,655 ms |
コンパイル使用メモリ | 173,808 KB |
実行使用メモリ | 399,616 KB |
最終ジャッジ日時 | 2024-07-23 15:23:20 |
合計ジャッジ時間 | 10,246 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 207 ms
172,928 KB |
testcase_01 | AC | 282 ms
241,152 KB |
testcase_02 | AC | 399 ms
332,544 KB |
testcase_03 | AC | 452 ms
360,704 KB |
testcase_04 | AC | 312 ms
256,512 KB |
testcase_05 | AC | 60 ms
52,608 KB |
testcase_06 | AC | 257 ms
213,632 KB |
testcase_07 | AC | 404 ms
328,448 KB |
testcase_08 | AC | 138 ms
115,584 KB |
testcase_09 | AC | 429 ms
344,704 KB |
testcase_10 | AC | 210 ms
179,712 KB |
testcase_11 | AC | 130 ms
105,856 KB |
testcase_12 | AC | 416 ms
339,840 KB |
testcase_13 | AC | 54 ms
48,256 KB |
testcase_14 | AC | 37 ms
33,792 KB |
testcase_15 | AC | 234 ms
195,712 KB |
testcase_16 | AC | 155 ms
130,688 KB |
testcase_17 | AC | 203 ms
170,624 KB |
testcase_18 | AC | 159 ms
135,680 KB |
testcase_19 | AC | 364 ms
295,168 KB |
testcase_20 | AC | 35 ms
31,360 KB |
testcase_21 | AC | 51 ms
44,800 KB |
testcase_22 | AC | 7 ms
9,088 KB |
testcase_23 | AC | 7 ms
9,088 KB |
testcase_24 | AC | 9 ms
10,240 KB |
testcase_25 | AC | 5 ms
7,936 KB |
testcase_26 | AC | 232 ms
191,360 KB |
testcase_27 | AC | 361 ms
296,064 KB |
testcase_28 | AC | 250 ms
207,488 KB |
testcase_29 | AC | 331 ms
272,896 KB |
testcase_30 | AC | 345 ms
282,240 KB |
testcase_31 | AC | 7 ms
8,576 KB |
testcase_32 | AC | 6 ms
8,192 KB |
testcase_33 | AC | 503 ms
399,616 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i, n) for (ll i = 0; i < n; ++i) #define P pair<ll, ll> #define Graph vector<vector<ll>> #define fi first #define se second #define vvvvll vector<vector<vector<vector<ll>>>> #define vvvll vector<vector<vector<ll>>> #define vvll vector<vector<ll>> #define vll vector<ll> #define pqll priority_queue<ll> #define pqllg priority_queue<ll, vector<ll>, greater<ll>> constexpr ll INF = (1ll << 60); constexpr ll mod = 1000000007; // 998244353; constexpr double pi = 3.14159265358979323846; template <typename T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template <typename T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } void pt_vvll(vvll v) { ll vs = v.size(), vs0 = v[0].size(); rep(i, vs) { rep(j, vs0) { cout << v[i][j]; if (j != vs0 - 1) cout << " "; else cout << "\n"; } } } void pt_vll(vll v) { ll vs = v.size(); rep(i, vs) { cout << v[i]; if (i == vs - 1) cout << "\n"; else cout << " "; } } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); ll N; cin >> N; vll v(N); rep(i, N) cin >> v[i]; vvll dp(N + 10, vll(5e4 + 10)); dp[0][v[0]] = 1; if (N >= 2) dp[1][v[1]] = 1; rep(i, N) { rep(j, 5e4 + 10) { if (i + 3 < N && j + v[i] < 5e4 + 10 && dp[i][j]) dp[i + 3][j + v[i + 3]] = 1; if (i + 2 < N && j + v[i] < 5e4 + 10 && dp[i][j]) dp[i + 2][j + v[i + 2]] = 1; } } ll ans = 0; rep(i, N + 10) rep(j, 5e4 + 10) if (dp[i][j]) chmax(ans, j); cout << ans << "\n"; return 0; }