| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 899419 | nasir_bashirov | 은행 (IZhO14_bank) | C++11 | 1032 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#include <bits/stdc++.h>
using namespace std;
#define db long double
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pii>
#define vll vector<pll>
#define endl '\n'
#define all(x) x.begin(), x.end()
#define fastio\
ios_base::sync_with_stdio(0);\
cin.tie(0);\
cout.tie(0)\
#define int long long
int a[25], b[25], n, m;
signed main(){
cin >> n >> m;
for(int i = 1; i <= n; i++){
cin >> a[i];
}
vi v;
for(int i = 1; i <= m; i++){
cin >> b[i];
v.push_back(i);
}
if(n == 1){
for(int mask = 1; mask < (1 << m); mask++){
int s = 0;
for(int j = 0; j < m; j++){
if((1 << j) & mask){
s += b[j + 1];
}
}
if(s == a[1]){
cout << "YES";
return 0;
}
}
cout << "NO";
return 0;
}
do{
int p = 1, cur = 0, s = 0;
while(p <= n and cur < v.size()){
s += b[v[cur]];
cur++;
if(s == a[p]) p++, s = 0;
}
if(p == n + 1){
cout << "YES";
return 0;
}
}while(next_permutation(all(v)));
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... | ||||
