LeetCode 2043. 简易银行系统

简介: LeetCode 2043. 简易银行系统

文章目录


1. 题目

2. 解题


1. 题目


你的任务是为一个很受欢迎的银行设计一款程序,以自动化执行所有传入的交易(转账,存款和取款)。

银行共有 n 个账户,编号从 1 到 n 。每个账号的初始余额存储在一个下标从 0 开始的整数数组 balance 中,其中第 (i + 1) 个账户的初始余额是 balance[i] 。


请你执行所有 有效的 交易。如果满足下面全部条件,则交易 有效 :


指定的账户数量在 1 和 n 之间,且

取款或者转账需要的钱的总数 小于或者等于 账户余额。

实现 Bank 类:


Bank(long[] balance) 使用下标从 0 开始的整数数组 balance 初始化该对象。

boolean transfer(int account1, int account2, long money) 从编号为 account1 的账户向编号为 account2 的账户转帐 money 美元。如果交易成功,返回 true ,否则,返回 false 。

boolean deposit(int account, long money) 向编号为 account 的账户存款 money 美元。如果交易成功,返回 true ;否则,返回 false 。

boolean withdraw(int account, long money) 从编号为 account 的账户取款 money 美元。如果交易成功,返回 true ;否则,返回 false 。

示例:
输入:
["Bank", "withdraw", "transfer", "deposit", "transfer", "withdraw"]
[[[10, 100, 20, 50, 30]], [3, 10], [5, 1, 20], [5, 20], [3, 4, 15], [10, 50]]
输出:
[null, true, true, true, false, false]
解释:
Bank bank = new Bank([10, 100, 20, 50, 30]);
bank.withdraw(3, 10);    // 返回 true ,账户 3 的余额是 $20 ,所以可以取款 $10 。
                         // 账户 3 余额为 $20 - $10 = $10 。
bank.transfer(5, 1, 20); // 返回 true ,账户 5 的余额是 $30 ,所以可以转账 $20 。
                         // 账户 5 的余额为 $30 - $20 = $10 ,账户 1 的余额为 $10 + $20 = $30 。
bank.deposit(5, 20);     // 返回 true ,可以向账户 5 存款 $20 。
                         // 账户 5 的余额为 $10 + $20 = $30 。
bank.transfer(3, 4, 15); // 返回 false ,账户 3 的当前余额是 $10 。
                         // 所以无法转账 $15 。
bank.withdraw(10, 50);   // 返回 false ,交易无效,因为账户 10 并不存在。
提示:
n == balance.length
1 <= n, account, account1, account2 <= 10^5
0 <= balance[i], money <= 10^12
transfer, deposit, withdraw 三个函数,每个 最多调用 10^4 次


2. 解题

  • 开数组存储即可
class Bank {
    vector<long long> Ac;
    int N;
public:
    Bank(vector<long long>& balance) {
        N = balance.size();
        Ac.resize(N);
        for(int i = 0; i < N; ++i)
            Ac[i] = balance[i];
    }
    bool transfer(int account1, int account2, long long money) {
        if (!legalnum(account1) || !legalnum(account2) || money > Ac[account1-1])
            return false;
        Ac[account1-1] -= money;
        Ac[account2-1] += money;
        return true;
    }
    bool deposit(int account, long long money) {
        if (!legalnum(account))
            return false;
        Ac[account-1] += money;
        return true;
    }
    bool withdraw(int account, long long money) {
        if (!legalnum(account) || money > Ac[account-1])
            return false;
        Ac[account-1] -= money;
        return true;
    }
    bool legalnum(int num)
    {
        return num>=1 && num<=N;
    }
};

208 ms 114 MB C++

相关文章
|
7月前
|
索引 容器
leetcode-6130:设计数字容器系统
leetcode-6130:设计数字容器系统
49 0
|
7月前
leetcode-6126:设计食物评分系统
leetcode-6126:设计食物评分系统
40 0
|
机器学习/深度学习 算法
【刷穿 LeetCode】282. 给表达式添加运算符 : 一道利用「代数系统」的回溯题
【刷穿 LeetCode】282. 给表达式添加运算符 : 一道利用「代数系统」的回溯题
|
数据库
LeetCode(数据库)- 报告系统状态的连续日期
LeetCode(数据库)- 报告系统状态的连续日期
109 0
[LeetCode] Find Duplicate File in System 在系统中寻找重复文件
Given a list of directory info including directory path, and all the files with contents in this directory, you need to find out all the groups of d.
1734 0
|
存储
[LeetCode] Design Log Storage System 设计日志存储系统
You are given several logs that each log contains a unique id and timestamp. Timestamp is a string that has the following format: Year:Month:Day:Hour:Minute:Second, for example, 2017:01:01:23:59:59.
1621 0
|
3月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
4月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
59 6
|
4月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
121 2