Submission #605853

#TimeUsernameProblemLanguageResultExecution timeMemory
605853jjianglyBank (IZhO14_bank)C++14
0 / 100
1 ms212 KiB
#include <bits/stdc++.h> using namespace std; #define all(x) x.begin(), x.end() #define siz(x) int(x.size()) #define ll long long #define ar array #define vt vector #define inf INT_MAX #define lnf LLONG_MAX const int nxm = int(2e5) + 7; int n, m, a[25], b[25]; namespace sub1 { void exe() { bool ok = false; function<void(int, int)> work = [&](int idx, int v) { if (idx == m) { ok = (v == a[0] ? true : ok); return; } work(idx + 1, v + a[idx - 1]); work(idx + 1, v); }; work(0, 0); cout << (ok ? "YES" : "NO") << "\n"; } }; int subtask() { if (n == 1) { return 1; } else if (n <= 10) { return 2; } else if (n <= 20 && m <= 14) { return 3; } return 4; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n >> m; for (int i = 0; i < n; ++i) { cin >> a[i]; } for (int i = 0; i < m; ++i) { cin >> b[i]; } if (subtask() == 1) { sub1::exe(); } return 0; }

Compilation message (stderr)

bank.cpp: In function 'void sub1::exe()':
bank.cpp:23:34: warning: array subscript -1 is below array bounds of 'int [25]' [-Warray-bounds]
   23 |       work(idx + 1, v + a[idx - 1]);
      |                         ~~~~~~~~~^
bank.cpp:13:11: note: while referencing 'a'
   13 | int n, m, a[25], b[25];
      |           ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...