이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ordered_set tree <int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update>
#define nemeshay ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
#define allr(pon) pon.rbegin(), pon.rend()
#include <ext/pb_ds/assoc_container.hpp>
#define all(pon) pon.begin(), pon.end()
#include <ext/pb_ds/tree_policy.hpp>
#define pii pair <int, int>
#define nosolve puts("-1")
#define YES puts("YES")
#define pb push_back
#define pf push_front
#define int long long
#define OK puts("OK")
#define NO puts("NO")
#define sigma signed
#define sc second
#define fr first
using namespace __gnu_pbds;
using namespace std;
const int N = 1e6 + 20, INF = 2e9 + 7;
vector <int> pon[N];
int a[N], b[N], dp[N];
sigma main(){
nemeshay
map <int, bool> sigmapon;
int n, m;
cin >> n >> m;
for (int i = 0; i < n; i++) cin >> a[i];
for (int i = 0; i < m; i++) cin >> b[i];
for (int i = 0; i < n; i++){
for (int j = 1; j <= a[i]; j++) dp[j] = INF;
for (int j = 0; j < m; j++) {
if (!sigmapon[j]) {
for (int k = b[j]; k <= a[i]; k++) {
if (dp[k - b[j]] + 1 < dp[k]) {
dp[k] = dp[k - b[j]] + 1;
pon[k] = pon[k - b[j]];
pon[k].pb(j);
}
}
}
}
if (dp[a[i]] == INF){
NO;
return 0;
}
for (auto j: pon[a[i]]) sigmapon[j] = 1;
}
YES;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |