LeetCode Solution, Easy, 1299. Replace Elements with Greatest Element on Right Side
用右側最大的元素替換當前元素
Search for a command to run...
用右側最大的元素替換當前元素
No comments yet. Be the first to comment.
現在應該開始有很多人想要踏入軟體工程的領域,但在進入這個領域之前,覺得先了解一些名詞,可以在入門時更有方向也更知道要用什麼關鍵字去找尋有用的資訊。這篇文章就是想要幫助想要入門的人理解一些軟體工程裡的專有名詞。 作業系統 這一區塊主要解釋跟作業系統層面相關的名詞 英文中文解釋 Operation system 簡稱 OS | 作業系統 | 就是電腦的作業系統,是三大作業系統分別是:Linux、Windows、macOS | | Linux | | 自由和開放原始碼的 UNI...
現在開始因為 ChatGPT 的出現,各種 AI 助手的功能都跑出來了。想想自己用了許久的環境設定也應該要來重新審視和建立新的開發環境了,僅此紀錄我個人的環境配置步驟和設定。 環境前置步驟 還原 MacBook Pro 至全新環境 macOS(全部資料刪除) 設定好初始設定後,登入 Apple ID 進入 App Store 確定 macOS 版本和預設 APP 都更新到最新 macOS 版本 到系統設定調整所有設定至個人習慣的設定 三指拖移 觸控板手勢開啟 防火牆開啟 輸入法設定...
從 ChatGPT 問世到現在,有許許多多的文章和討論出來。先從最早的 Google 要完蛋了,到後來的工作要被取代了,工程師失業了。 我就比較沒有想要馬上出來評論一下,我喜歡讓子彈飛一會兒。跟討論一下我自己比較在意的討論點。 Google 為什麼慢了? 結論:因為他需要更小心 很多人說 Google 怎麼被微軟搶先了一步。剛開始 Bing 說要加上 AI 的時候大家都在說 Google 怎麼慢了。我就馬上跑去看 OpenAI 的網站,靠北呀啊就 Azure 贊助的。那當然在正式上線 ChatG...
囤積癖
607. Sales Person 題目敘述 SQL Schema > Create table If Not Exists SalesPerson (sales_id int, name varchar(255), salary int, commission_rate int, hire_date date) Create table If Not Exists Company (com_id int, name varchar(255), city varchar(255)...
Given an array arr, replace every element in that array with the greatest element among the elements to its right, and replace the last element with -1.
After doing so, return the array.
Example 1:
Input: arr = [17,18,5,4,6,1]
Output: [18,6,6,6,1,-1]
Explanation:
- index 0 --> the greatest element to the right of index 0 is index 1 (18).
- index 1 --> the greatest element to the right of index 1 is index 4 (6).
- index 2 --> the greatest element to the right of index 2 is index 4 (6).
- index 3 --> the greatest element to the right of index 3 is index 4 (6).
- index 4 --> the greatest element to the right of index 4 is index 5 (1).
- index 5 --> there are no elements to the right of index 5, so we put -1.
Example 2:
Input: arr = [400]
Output: [-1]
Explanation: There are no elements to the right of index 0.
Constraints:
1 <= arr.length <= 10**41 <= arr[i] <= 10**5Hint 1
Loop through the array starting from the end.
Hint 2
Keep the maximum value seen so far.
這題是有一個整數陣列 arr,從開頭替換當前元素為右側中最大的元素,在最後一位的話替換成 -1。
這題最好的解法就是搭配使用 In-place 的作法讓空間複雜度降低,但是有些程式語言不支援直接更新陣列的做法,例如 Rust 和 Swift。所以只能複製另一個陣列來操作。
這題雖然題目說從頭開始替換,但其實反向來做會是更好的方式。從尾部往頭部走,可以一邊替換一邊比較出右側的最大值,讓時間複雜度只需要 O(n) 即可。如果從頭部往尾部走,反而每走一步都要重新去找出右側最大值,複雜度會更高。
func replaceElements(arr []int) []int {
mx := -1
for i := len(arr) - 1; i >= 0; i-- {
if arr[i] > mx {
arr[i], mx = mx, arr[i]
} else {
arr[i] = mx
}
}
return arr
}
/**
* @param {number[]} arr
* @return {number[]}
*/
var replaceElements = function (arr) {
let mx = -1;
for (let i = arr.length - 1; i >= 0; i--) {
[arr[i], mx] = [mx, Math.max(arr[i], mx)];
}
return arr;
};
class Solution {
fun replaceElements(arr: IntArray): IntArray {
var mx: Int = -1
for (i in arr.size - 1 downTo 0) {
val tmp = arr[i]
arr[i] = mx
mx = maxOf(mx, tmp)
}
return arr
}
}
class Solution
{
/**
* @param Integer[] $arr
* @return Integer[]
*/
function replaceElements($arr)
{
$mx = -1;
for ($i = count($arr) - 1; $i >= 0; $i--) {
$temp = $mx;
$mx = max($arr[$i], $mx);
$arr[$i] = $temp;
}
return $arr;
}
}
class Solution:
def replaceElements(self, arr: List[int]) -> List[int]:
mx = -1
for i in range(len(arr) - 1, -1, -1):
arr[i], mx = mx, max(mx, arr[i])
return arr
impl Solution {
pub fn replace_elements(arr: Vec<i32>) -> Vec<i32> {
let mut mx = -1;
let mut res = vec![-1; arr.len()];
for i in (0..arr.len()).rev() {
res[i] = mx;
mx = std::cmp::max(arr[i], mx);
}
res
}
}
class Solution {
func replaceElements(_ arr: [Int]) -> [Int] {
var mx: Int = -1
var res: [Int] = arr
for i in (0..<arr.count).reversed() {
res[i] = mx
mx = max(mx, arr[i])
}
return res
}
}