代码拉取完成,页面将自动刷新
/*
* @Description:
* @Version: 1.0
* @Author: Vicro
* @Date: 2020-12-10 10:20:34
* @LastEditTime: 2020-12-10 10:29:26
* @FilePath: \Leetcode\0.test.cpp
*/
/*
* @lc app=leetcode.cn id=860 lang=cpp
*
* [860] 柠檬水找零
*/
// @lc code=start
#include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
bool lemonadeChange(vector<int> bills) {
if (bills[0] != 0) return false;
int five = 1, ten = 0;
for (int i = 1; i < bills.size(); i ++) {
if (bills[i] == 5) five ++;
if (bills[i] == 10) {
if (five == 0) return false;
else {
ten ++;
five --;
}
}
if (bills[i] == 20) {
if (ten >= 1 && five >= 1) {
ten --;
five --;
}
else if (ten == 0 and five >= 3) five -= 3;
else return false;
}
}
return true;
}
};
int main() {
Solution sol;
bool A = sol.lemonadeChange({5, 5, 5, 10, 20});
cout << A << endl;
system("pause");
return 0;
}
// @lc code=end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。