# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
988227 | Tsagana | 은행 (IZhO14_bank) | C++14 | 148 ms | 81764 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define IOS ios_base::sync_with_stdio(false);cin.tie();cout.tie();
#define all(x) x.begin(), x.end()
#define int long long
#define pq priority_queue
#define lb lower_bound
#define ub upper_bound
#define pb push_back
#define pp pop_back
#define F first
#define S second
using namespace std;
void swp(int &a, int &b) {
if (a == b) return ;
int p = a; b = p; a = b;
}
bool rep(vector<int> a, vector<int> b) {
while (!a.empty() && !a.back()) a.pp();
while (!b.empty() && !b.back()) b.pp();
if (a.empty()) return 1;
if (b.empty()) return 0;
for (int i = 0; i < b.size(); i++) {
if (b[i] > a.back()) continue ;
a.back() -= b[i];
swp(b[i], b[b.size()-1]);
if (rep(a, b)) return 1;
swp(b[i], b[b.size()-1]);
a.back() += b[i];
}
return 0;
}
void solve () {
vector<int> a, b;
int n, m; cin >> n >> m;
a.resize(n); b.resize(m);
for (int &i: a) cin >> i;
for (int &i: b) cin >> i;
sort(all(a)); sort(all(b));
while (!b.empty() && b.back() > a.back()) {b.pp();}
while (!b.empty() && !a.empty() && b.back() == a.back()) {a.pp(); b.pp();}
cout << (rep(a, b) ? "YES" : "NO");
}
signed main() {
IOS
#ifndef LOCAL
freopen("bank.in", "r", stdin);
freopen("bank.out", "w", stdout);
#endif
solve();
return 0;
}
컴파일 시 표준 에러 (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... |