제출 #1098125

#제출 시각아이디문제언어결과실행 시간메모리
1098125vjudge1은행 (IZhO14_bank)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
int main() 
{
    int n, m;
    cin >> n >> m;
    vector<int> a(n), b(m);
    for(int i = 0; i < n; i++) 
    {
        cin >> a[i];
    }

    for (int i = 0; i < M; ++i) {
        cin >> b[i];
    }
    vector<bool> dp(1001, false);
    dp[0] = true;
    for(int i = 0; i < m; i++)
    {
        int q = b[i];
        for(int j = 1000; j >= q; j--)
        {
            if(dp[j - q])
            {
                dp[j] = true;
            }
        }
    }
    for(int i = 0; i < n; i++)
    {
        if(!dp[a[i]])
        {
            cout << "NO" << endl;
            return 0;
        }
    }

    cout << "YES";
}

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

bank.cpp: In function 'int main()':
bank.cpp:13:25: error: 'M' was not declared in this scope
   13 |     for (int i = 0; i < M; ++i) {
      |                         ^