# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
839205 | Alfraganus | 은행 (IZhO14_bank) | C++17 | 0 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define printmp(a) for(auto x : a) cout << x.first << ' ' << x.second << endl;
int main(){
freopen("bank.in", "r", stdin);
freopen("bank.out", "w", stdout);
int n, m;
cin >> n >> m;
vector<int> b(n);
for (int i = 0; i < n; i++)
cin >> b[i]; // debt
vector<int> a(m);
for(int i = 0; i < m; i ++)
cin >> a[i]; // tenges
vector<pair<int, int>> dp((1 << m) + 1);
for(int i = 0; i <= (1 << m); i ++){
pair<int, int> best = {0, 0};
for(int j = 0; j < m; j ++){
if((i & (1 << j)) == (1 << j)){
if(b[dp[i ^ (1 << j)].first] - dp[i ^ (1 << j)].second > a[j])
best = max(best, {dp[i ^ (1 << j)].first, dp[i ^ (1 << j)].second + a[j]});
if (b[dp[i ^ (1 << j)].first] - dp[i ^ (1 << j)].second == a[j])
best = max(best, {dp[i ^ (1 << j)].first + 1, 0});
}
}
if(best.first == n){
cout << "YES";
return 0;
}
dp[i] = best;
}
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... |