# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1103080 | hippo123 | 은행 (IZhO14_bank) | C++17 | 1 ms | 336 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pr pair<int, int>
#define ll long long
#define pb push_back
#define f first
#define s second
int main(){
freopen("bank.in", "r", stdin);
freopen("bank.out", "w", stdout);
int n, m; cin>>n>>m;
vector<int> a(n), b(m);
for (int i=0; i<n; i++) cin>>a[i];
for (int i=0; i<m; i++) cin>>b[i];
vector<pr> dp(1<<m); // .f number of people covered, .s: remaining bills
dp[0]={0, 0};
for (int x=0; x<(1<<m); x++){
for (int i=0; i<m; i++){
if(x&(1<<i)) continue;
pr node;
if(a[dp[x].f]==dp[x].s+b[i]) node={dp[x].f+1, 0};
else {
node={dp[x].f, dp[x].s+b[i]};
}
dp[x|(1<<i)]=max(dp[x|(1<<i)], node);
}
}
if(dp[(1<<m)-1].f==n) cout<<"YES"<<endl;
else cout<<"NO";
}
컴파일 시 표준 에러 (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... |