# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1103637 | vjudge1 | 은행 (IZhO14_bank) | C++14 | 358 ms | 4736 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
#define IOS ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define F first
#define S second
#define sz(x) x.size()
#define all(x) x.begin(), x.end()
#define pb push_back
const int Inf = 2e9 + 10;
const int Mod = 1e9 + 7;
const int LG = 25;
const int SQ = 400;
const int Alpha = 27;
const int maxN = 25;
const int maxL = 2e6;
const int maxS = 4e4 + 10;
int a[maxN];
int b[maxN];
int ps[maxN];
int two[maxN];
int dp[maxL];
vector <int> ConvertBinary(int x) {
vector <int> ret;
while(x) {
ret.pb(x%2);
x/=2;
}
return ret;
}
int main() {
IOS;
two[0] = 1;
for(int i = 1; i < maxN; i++)
two[i] = 2*two[i-1];
int n, m;
cin >> n >> m;
for(int i = 1; i <= n; i++)
cin >> a[i];
for(int i = 1; i <= m; i++)
cin >> b[i];
ps[1] = a[1];
for(int i = 2; i <= n; i++)
ps[i] = ps[i-1] + a[i];
for(int i = 0; i < (1 << m); i++) {
int mx = 0;
int sum = 0;
vector <int> bin = ConvertBinary(i);
for(int j = 0; j < sz(bin); j++) {
if(bin[j] == 1) {
sum += b[j+1];
mx = max(mx, dp[i-two[j]]);
}
}
if(sum == ps[mx+1])
mx++;
dp[i] = mx;
}
if(dp[(1<<m)-1] == n)
cout << "YES\n";
else
cout << "NO\n";
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |