結果
問題 | No.1872 Dictionary Order |
ユーザー | milanis48663220 |
提出日時 | 2022-03-11 22:17:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 2,462 bytes |
コンパイル時間 | 1,162 ms |
コンパイル使用メモリ | 127,964 KB |
実行使用メモリ | 35,200 KB |
最終ジャッジ日時 | 2024-09-19 08:41:29 |
合計ジャッジ時間 | 2,571 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
35,200 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 22 ms
18,432 KB |
testcase_03 | AC | 5 ms
5,632 KB |
testcase_04 | AC | 34 ms
27,008 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 17 ms
13,696 KB |
testcase_07 | AC | 9 ms
8,704 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 8 ms
7,296 KB |
testcase_10 | AC | 11 ms
10,880 KB |
testcase_11 | AC | 20 ms
17,536 KB |
testcase_12 | AC | 5 ms
6,528 KB |
testcase_13 | AC | 6 ms
6,656 KB |
testcase_14 | AC | 20 ms
16,640 KB |
testcase_15 | AC | 23 ms
19,968 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 13 ms
11,136 KB |
testcase_18 | AC | 14 ms
13,056 KB |
testcase_19 | AC | 10 ms
9,728 KB |
testcase_20 | AC | 8 ms
7,424 KB |
testcase_21 | AC | 17 ms
14,336 KB |
testcase_22 | AC | 39 ms
28,288 KB |
testcase_23 | AC | 15 ms
12,672 KB |
testcase_24 | AC | 9 ms
9,600 KB |
testcase_25 | AC | 21 ms
17,408 KB |
testcase_26 | AC | 10 ms
9,344 KB |
testcase_27 | AC | 20 ms
16,896 KB |
testcase_28 | AC | 33 ms
25,088 KB |
testcase_29 | AC | 37 ms
27,264 KB |
testcase_30 | AC | 3 ms
5,376 KB |
testcase_31 | AC | 41 ms
30,848 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 1 ms
5,376 KB |
testcase_34 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; 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; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } const int inf = 1e9; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n, m; cin >> n >> m; vector<int> a(n), p(n); for(int i = 0; i < n; i++) cin >> a[i]; for(int i = 0; i < n; i++) { cin >> p[i]; p[i]--; } auto dp = vec2d(n+1, m+1, false); auto pre = vec2d(n+1, m+1, inf); auto pre_idx = vec2d(n+1, m+1, -1); dp[n][0] = true; pre[n][0] = -1; pre_idx[n][0] = -1; for(int i = n-1; i >= 0; i--){ for(int j = 0; j <= m; j++){ if(!dp[i+1][j]) continue; dp[i][j] = true; if(chmin(pre[i][j], pre[i+1][j])){ pre_idx[i][j] = pre_idx[i+1][j]; } if(j+a[i] <= m) { dp[i][j+a[i]] = true; if(chmin(pre[i][j+a[i]], p[i])){ pre_idx[i][j+a[i]] = i+1; } } } } if(!dp[0][m]){ cout << -1 << endl; return 0; } int idx = pre_idx[0][m]; int rem = m; vector<int> ans; while(idx != -1){ ans.push_back(idx-1); rem -= a[idx-1]; idx = pre_idx[idx][rem]; } cout << ans.size() << endl; for(int x: ans) cout << x+1 << ' '; cout << endl; }