| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 980931 | khanhtb | Bank (IZhO14_bank) | C++14 | 9 ms | 27244 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define ull unsigned long long
#define ld double
#define pb push_back
#define pf push_front
#define vi vector<ll>
#define vll vector<vi>
#define pll pair<ll,ll>
#define vpll vector<pll>
#define all(a) a.begin(), a.end()
#define fi first
#define se second
using namespace std;
const ll mod = 1e9+7;
const ll inf = 1e18;
const ll base = 26;
const ll blocksz = 320;
const ll N = 1e6+8;
const ll buff = 2e7+8;
ll n,m,dp[21][1<<20],a[21],b[21];
vi premask[N];
void solve(){
    cin >> n >> m;
    for(ll i = 1; i <= n; i++) cin >> a[i];
    for(ll i = 0; i < m; i++) cin >> b[i];  
    for(ll mask = 0; mask < 1<<m; mask++){
        dp[0][mask] = 1;
        ll sum = 0;
        for(ll i = 0; i < m; i++){
            if(mask>>i&1) sum += b[i];
        }
        premask[sum].pb(mask);
    }
    for(ll i = 0; i < n; i++){
        for(ll mask = 0; mask < 1<<m; mask++){
            if(dp[mask]){
                for(ll submask:premask[mask]){
                    dp[i+1][submask|mask] |= dp[i][mask];
                }
            }
        }
    }
    cout << (dp[n][(1<<m)-1]?"YES":"NO");
}
signed main(){
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    if(fopen("test.inp","r")){
        freopen("test.inp","r",stdin);
        freopen("test.out","w",stdout);
    }
    int T = 1;
    // cin >> T;
    while(T--){
        solve();
        cout << '\n';
    }
}    
컴파일 시 표준 에러 (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... | ||||
