2021-07-22 Daily-Challenge
Today I have done Design Browser History and leetcode's July LeetCoding Challenge with cpp.
Design Browser History
Description
You have a browser of one tab where you start on the homepage and you can visit another url, get back in the history number of steps or move forward in the history number of steps.
Implement the BrowserHistory class:
BrowserHistory(string homepage)Initializes the object with thehomepageof the browser.void visit(string url)Visitsurlfrom the current page. It clears up all the forward history.string back(int steps)Movestepsback in history. If you can only returnxsteps in the history andsteps > x, you will return onlyxsteps. Return the currenturlafter moving back in history at moststeps.string forward(int steps)Movestepsforward in history. If you can only forwardxsteps in the history andsteps > x, you will forward onlyxsteps. Return the currenturlafter forwarding in history at moststeps.
Example:
Input:
["BrowserHistory","visit","visit","visit","back","back","forward","visit","forward","back","back"]
[["leetcode.com"],["google.com"],["facebook.com"],["youtube.com"],[1],[1],[1],["linkedin.com"],[2],[2],[7]]
Output:
[null,null,null,null,"facebook.com","google.com","facebook.com",null,"linkedin.com","google.com","leetcode.com"]
Explanation:
BrowserHistory browserHistory = new BrowserHistory("leetcode.com");
browserHistory.visit("google.com"); // You are in "leetcode.com". Visit "google.com"
browserHistory.visit("facebook.com"); // You are in "google.com". Visit "facebook.com"
browserHistory.visit("youtube.com"); // You are in "facebook.com". Visit "youtube.com"
browserHistory.back(1); // You are in "youtube.com", move back to "facebook.com" return "facebook.com"
browserHistory.back(1); // You are in "facebook.com", move back to "google.com" return "google.com"
browserHistory.forward(1); // You are in "google.com", move forward to "facebook.com" return "facebook.com"
browserHistory.visit("linkedin.com"); // You are in "facebook.com". Visit "linkedin.com"
browserHistory.forward(2); // You are in "linkedin.com", you cannot move forward any steps.
browserHistory.back(2); // You are in "linkedin.com", move back two steps to "facebook.com" then to "google.com". return "google.com"
browserHistory.back(7); // You are in "google.com", you can move back only one step to "leetcode.com". return "leetcode.com"
Constraints:
1 <= homepage.length <= 201 <= url.length <= 201 <= steps <= 100homepageandurlconsist of '.' or lower case English letters.- At most
5000calls will be made tovisit,back, andforward.
Solution
class BrowserHistory {
string homepage;
vector<string> history;
int index = 1;
public:
BrowserHistory(string _homepage): homepage(_homepage) {
history.push_back(homepage);
}
void visit(string url) {
while(history.size() > index) history.pop_back();
history.push_back(url);
index += 1;
}
string back(int steps) {
if(index > steps) index = index - steps;
else index = 1;
return history[index - 1];
}
string forward(int steps) {
if(index + steps > history.size()) index = history.size();
else index += steps;
return history[index - 1];
}
};
// Accepted
// 71/71 cases passed (112 ms)
// Your runtime beats 94.89 % of cpp submissions
// Your memory usage beats 61.84 % of cpp submissions (57.6 MB)
July LeetCoding Challenge 22
Description
Partition Array into Disjoint Intervals
Given an array nums, partition it into two (contiguous) subarrays left and right so that:
- Every element in
leftis less than or equal to every element inright. leftandrightare non-empty.lefthas the smallest possible size.
Return the length of left after such a partitioning. It is guaranteed that such a partitioning exists.
Example 1:
Input: nums = [5,0,3,8,6]
Output: 3
Explanation: left = [5,0,3], right = [8,6]
Example 2:
Input: nums = [1,1,1,0,6,12]
Output: 4
Explanation: left = [1,1,1,0], right = [6,12]
Note:
2 <= nums.length <= 300000 <= nums[i] <= 106- It is guaranteed there is at least one way to partition
numsas described.
Solution
int mmax[30000];
int mmin[30000];
class Solution {
public:
int partitionDisjoint(vector<int>& nums) {
int len = nums.size();
mmax[0] = nums[0];
mmin[len - 1] = nums[len - 1];
for(int i = 1; i < len; ++i) {
mmax[i] = max(mmax[i - 1], nums[i]);
mmin[len - 1 - i] = min(mmin[len - i], nums[len - 1 - i]);
}
for(int i = 1; i < len; ++i) {
if(mmax[i - 1] <= mmin[i]) return i;
}
return -1;
}
};