제출 #1196395

#제출 시각아이디문제언어결과실행 시간메모리
1196395easterp은행 (IZhO14_bank)C++20
0 / 100
0 ms328 KiB
///                SOURCE: EASTERP
///                    THPT TD

#include <bits/stdc++.h>
#define fastIO ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define FOR(i, a, b) for(auto i = a; i <= b; i++)
#define pii pair<int, int>
#define pll pair<long, long>
#define FORD(i, a, b) for(auto i = a; i >= b; i--)
#define forin(i, a) for(auto i : a)
#define vi vector<int>
#define vll vector<ll>
#define vb vector<bool>
#define pb push_back
#define eb emplace_back
#define el "\n"
#define fi first
#define se second
#define N 100006
#define MOD (int) 1000000007
#define EASTERP 0
#define EASTER 1

using ll = long long;
using namespace std;


/// KHAIBAO

int n, m;
vi a, b;
bool dp[1 << 20];
int salarySum[1 << 20];

///CODE NAO EASTERP

void Solve() {
    cin >> n >> m;
    a.resize(n);
    b.resize(m);
    FOR(i, 0, n - 1) cin >> a[i];
    FOR(i, 0, m - 1) cin >> b[i];

    
    sort(b.begin(), b.end(), greater<int>());

    int total_states = 1 << n;
    dp[0] = true;

    
    FOR(mask, 0, total_states - 1) {
        salarySum[mask] = 0;
        FOR(i, 0, n - 1) {
            if (mask & (1 << i))
                salarySum[mask] += a[i];
        }
    }

    FOR(mask, 0, total_states - 1) {
        if (!dp[mask]) continue;
        int usedSum = salarySum[mask];

        FOR(i, 0, n - 1) {
            if (!(mask & (1 << i))) { 
                int newMask = mask | (1 << i);
                int target = usedSum + a[i];

                
                int sum = 0;
                for (int j = 0; j < m; ++j) {
                    if (sum + b[j] <= target)
                        sum += b[j];
                    if (sum == target) break;
                }

                if (sum == target)
                    dp[newMask] = true;
            }
        }
    }
    if (dp[total_states - 1])
        cout << "YES";
    else
        cout << "NO";
}

int main(){

    fastIO;

    #define NAME "BANK"
    if(fopen(NAME".inp", "r")){
    freopen(NAME".inp", "r", stdin);
    freopen(NAME".out", "w", stdout);
    }

    Solve();
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

bank.cpp: In function 'int main()':
bank.cpp:93:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   93 |     freopen(NAME".inp", "r", stdin);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
bank.cpp:94:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   94 |     freopen(NAME".out", "w", stdout);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...