# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1107526 | vjudge1 | 은행 (IZhO14_bank) | C++17 | 2 ms | 336 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define nn "\n";
#define pb push_back
#define all(v) (v).begin() , (v).end()
const int N = 2e3+ 4;
int a[N] , b[N];
vector<int>g[N];
bool used[21][(1 << 20)];
int n , T , q , m ;
void dfs(int v , int x ){
if(v == n ){
cout << "YES";
exit(0);
}
if (used[v][x]) return;
used[v][x] = true;
for(auto at:g[v+1]){
if(x&at== 0 ){
dfs(v + 1 , (x | at));
}
}
}
signed main(){
ios_base::sync_with_stdio(0) , cin.tie(0);
cin>> n >> m ;
for(int i=1 ; i <= n ;i++)cin>> a[i];
for(int i=0 ; i < m; i++)cin>> b[i];
for(int i = 0 ; i < (1 << m ) - 1; i++){
int sum =0 ;
for(int j =0 ; j < m; j++){
if(( i >> j )&1 ){
sum+=b[j];
}
}
if(sum <= 1000)g[sum].pb(i);
}
for(int i=0 ; i < g[1].size() ; i++){
dfs(1 , g[1][i]);
}
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... |