Submission #765738

# Submission time Handle Problem Language Result Execution time Memory
765738 2023-06-25T04:20:19 Z tinhngoVN Bank (IZhO14_bank) C++14
Compilation error
0 ms 0 KB
#include <iostream>
#include <vector>

using std::cout;
using std::endl;
using std::vector;

int main() {
	int people_num;
	int note_num;
	std::cin >> people_num >> note_num;
	vector<int> people(people_num);
	vector<int> banknotes(note_num);
	for (int &p : people) { std::cin >> p; }
	for (int &b : banknotes) { std::cin >> b; }

	vector<int> leftover(1 << note_num, -1);
	vector<int> people_covered(1 << note_num, -1);
	leftover[0] = 0;
	people_covered[0] = 0;
	for (int s = 0; s < (1 << note_num); s++) {
		for (int last = 0; last < note_num; last++) {
			if ((s & (1 << last)) == 0) { continue; }
			int prev = s & ~(1 << last);
			if (people_covered[prev] == -1) { continue; }

			int new_amt = leftover[prev] + banknotes[last];
			Mức lương của người hiện tại mà chúng tôi sẽ cố gắng trả
			int curr_target = people[people_covered[prev]];
			// if it's still not enough, just increment the leftover pile
			if (new_amt < curr_target) {
				people_covered[s] = people_covered[prev];
				leftover[s] = new_amt;
			}
			/*
			 * or it's exactly right, in which case reset the leftover count
			 * and increment the covered amount
			 */
			else if (new_amt == curr_target) {
				people_covered[s] = people_covered[prev] + 1;
				leftover[s] = 0;
			}
		}
		// we've covered all the people!
		if (people_covered[s] == people_num) {
			cout << "YES" << endl;
			return 0;
		}
	}
	cout << "NO" << endl;
}

Compilation message

bank.cpp: In function 'int main()':
bank.cpp:28:4: error: 'M\U00001ee9c' was not declared in this scope
   28 |    Mức lương của người hiện tại mà chúng tôi sẽ cố gắng trả
      |    ^~~
bank.cpp:31:18: error: 'curr_target' was not declared in this scope
   31 |    if (new_amt < curr_target) {
      |                  ^~~~~~~~~~~