前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Baozi Training Leetcode solution 1169: Invalid Transactions

Baozi Training Leetcode solution 1169: Invalid Transactions

作者头像
包子面试培训
发布2019-09-24 13:38:26
5600
发布2019-09-24 13:38:26
举报
文章被收录于专栏:包子铺里聊IT包子铺里聊IT

FB最近员工跳楼的员工被证实是一位中国员工。死者为大,具体原因目前也不清楚,希望大家也不要过多的猜测。在这里,包子君希望大家一定要学会处理工作和生活中的压力,没什么大不了的,实在不行想想黑人兄弟们,多么坚强傲娇的存在着. Fuck this shit! 老子不陪你们这帮傻逼玩了(2Pac当年的hit em up, 直截了当)

Fuck Mobb Deep, fuck Biggie Fuck Bad Boy as a staff, record label and as a motherfucking crew And if you want to be down with Bad Boy, then fuck you too

Leetcode solution 1169: Invalid Transactions

Blogger:https://blog.baozitraining.org/2019/09/leetcode-solution-1169-invalid.html

Youtube: https://youtu.be/Br0V**dzEy0

博客园: https://www.cnblogs.com/baozitraining/p/11509830.html

B站: https://www.bilibili.com/video/av67417089/

Problem Statement

A transaction is possibly invalid if:

  • the amount exceeds $1000, or;
  • if it occurs within (and including) 60 minutes of another transaction with the same name in a different city.

Each transaction string transactions[i] consists of comma separated values representing the name, time (in minutes), amount, and city of the transaction.

Given a list of transactions, return a list of transactions that are possibly invalid. You may return the answer in any order.

Example 1:

代码语言:javascript
复制
Input: transactions = ["alice,20,800,mtv","alice,50,100,beijing"]
Output: ["alice,20,800,mtv","alice,50,100,beijing"]
Explanation: The first transaction is invalid because the second transaction occurs within a difference of 60 minutes, have the same name and is in a different city. Similarly the second one is invalid too.

Example 2:

代码语言:javascript
复制
Input: transactions = ["alice,20,800,mtv","alice,50,1200,mtv"]
Output: ["alice,50,1200,mtv"]

Example 3:

代码语言:javascript
复制
Input: transactions = ["alice,20,800,mtv","bob,50,1200,mtv"]
Output: ["bob,50,1200,mtv"]

Constraints:

  • transactions.length <= 1000
  • Each transactions[i] takes the form "{name},{time},{amount},{city}"
  • Each {name} and {city} consist of lowercase English letters, and have lengths between 1 and 10.
  • Each {time} consist of digits, and represent an integer between 0 and 1000.
  • Each {amount} consist of digits, and represent an integer between 0 and 2000.

Problem link

Video Tutorial

You can find the detailed video tutorial here

  • Youtube
  • B站

Thought Process

It's an implementation problem and it's up to you how fast you can type to determine whether you want to flex your muscles on object oriented design. It's actually quite a small moev, whether you want to convert the comma separated line into a Transaction object or not.

To meet the two conditions, we can simply loop over all the transactions while at the same time, keep a map to store all the transactions under the same name. Then the problem is compare the city for all the transactions under the same name that time is less or equal than 60 mins. At first I was trying to sort the collection based on the time in ascending order. However, that does not really help reduce the O(N^2) complexity since worst case is still all transactions are within the 60 mins bound, and one "bad" transaction can essentially cause all the previous "good" transactions to become bad, so we have to go back and revisit the previous ones. (as shown in below graph)

Caveats

  • It's better to use a Set for de-duplication than a list since we might add duplicate transactions to the collection (e.g., a transaction > 1000 amount could also be invalid due to same name with different city under time < 60min)

Solutions

代码语言:javascript
复制
 1 public class Transaction implements Comparable<Transaction> {
 2         public String name;
 3         public int timeInMin;
 4         public int amount;
 5         public String city;
 6         public String txnString;
 7 
 8         /**
 9          * Constructor
10          * @param txn a string "{name},{time},{amount},{city}"
11          */
12         public Transaction(String txn) {
13             this.txnString = txn;
14 
15             String[] txns = txn.split(",");
16             this.name = txns[0];
17             this.timeInMin = Integer.parseInt(txns[1]);
18             this.amount = Integer.parseInt(txns[2]);
19             this.city = txns[3];
20         }
21 
22         // sort transactions order in timeInMin ascending order
23         @Override
24         public int compareTo(Transaction o) {
25             return this.timeInMin - o.timeInMin;
26         }
27     }
28 
29     public List<String> invalidTransactions(String[] transactions) {
30         // need to use a set, since an invalid one could be a one > 1000, and that one could also be invalid due to
31         // same person different locations
32         Set<String> invalidTxns = new HashSet<>();
33 
34         Map<String, List<Transaction>> lookup = new HashMap<>();
35 
36         for (String t : transactions) {
37             Transaction txn = new Transaction(t);
38             if (!lookup.containsKey(txn.name)) {
39                 lookup.put(txn.name, new ArrayList<Transaction>());
40             }
41 
42             lookup.get(txn.name).add(txn);
43 
44             if (txn.amount > 1000) {
45                 invalidTxns.add(txn.txnString);
46                 continue;
47             }
48         }
49 
50         for (Map.Entry<String, List<Transaction>> entry : lookup.entrySet()) {
51             List<Transaction> txns = entry.getValue();
52             if (txns.size() <= 1) {
53                 continue;
54             }
55 
56             // Sorting in this case didn't really help on time complexity
57             Collections.sort(txns);
58 
59             // have to perform two loops, essentially it's O(N^2) if they are all in range
60             for (int i = 1; i < txns.size(); i++) {
61                 Transaction cur = txns.get(i);
62 
63                 for (int j = i - 1; j >= 0; j--) {
64                     if (cur.timeInMin - txns.get(j).timeInMin > 60) {
65                         break;
66                     }
67 
68                     if (cur.city.equals(txns.get(j).city)) {
69                         continue;
70                     }
71 
72                     invalidTxns.add(cur.txnString);
73                     invalidTxns.add(txns.get(j).txnString);
74                 }
75             }
76         }
77         List<String> res = new ArrayList<>(invalidTxns);
78         return res;
79     }

Time Complexity: O(N^2),we have to loop through the transactions in a nested way for worst case all transactions are under the same name and all within 60min.

Space Complexity: O(N),the result list and set and the extra hashmap we used

References

  • None
本文参与 腾讯云自媒体分享计划,分享自微信公众号。
原始发表:2019-09-23,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 包子铺里聊IT 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Problem Statement
  • Video Tutorial
  • Thought Process
  • References
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档