LeetCode Solution, Medium, 1663. Smallest String With A Given Numeric Value
給定數值的最小字串
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)...
The numeric value of a lowercase character is defined as its position (1-indexed) in the alphabet, so the numeric value of a is 1, the numeric value of b is 2, the numeric value of c is 3, and so on.
The numeric value of a string consisting of lowercase characters is defined as the sum of its characters' numeric values. For example, the numeric value of the string "abe" is equal to 1 + 2 + 5 = 8.
You are given two integers n and k. Return the lexicographically smallest string with length equal to n and numeric value equal to k.
Note that a string x is lexicographically smaller than string y if x comes before y in dictionary order, that is, either x is a prefix of y, or if i is the first position such that x[i] != y[i], then x[i] comes before y[i] in alphabetic order.
Example 1:
Input: n = 3, k = 27
Output: "aay"
Explanation: The numeric value of the string is 1 + 1 + 25 = 27, and it is the smallest string with such a value and length equal to 3.
Example 2:
Input: n = 5, k = 73
Output: "aaszz"
Constraints:
1 <= n <= 10**5n <= k <= 26 * nHint 1:
Think greedily.
Hint 2:
If you build the string from the end to the beginning, it will always be optimal to put the highest possible character at the current index.
這題會給兩個參數 n 和 k,需要找出一個字串,然後其長度是 n,然後其字母總和是 k。而字母的值就是相當於字母的順序,例如 a 是 1、b 是 2,依序到 z 是26。而且其最後的字串需要是最小字母排序字串。
這題因為需要有字母的數字,慢慢手刻一個 hashmap 可以做到,但是太麻煩了。所以就可以想到的是 ASCII Table 的字母值。a 到 z,分別是 97 ~ 122,所以只要減去 96 就可以得到值了。
再來是解題思維,因為我們想要找到最小的最小字母排序字串。舉個例子,今天 k 是 32 的話,答案可以是 aaey 或 aadz,但是因為要是最小字母排序字串,所以前面要盡可能的小,因此答案只能是 aadz。因為要盡可能的小,所以我們可以先把字串全部的值都設定為 a,而剩餘的值從最後一位盡量取最大值。
n = 4, k = 32
第一步:
result = ['a', 'a', 'a', 'a']
k - n => 剩下 28 要補齊
第二步:
先取 index = n -1 的值 result[3] 補成最大值
k > 26 => 取 26
k < 26 => 取 k
result = ['a', 'a', 'a', 'z']
k - (26 - 1) => 3 (z 到 a 只差 25,所以減 25)
最後一步:
取下一個 index = n - 2 的值 result[2],同第二部將其補上剩餘的值
result = ['a', 'a', 'd', 'z']
func getSmallestString(n int, k int) string {
result := make([]byte, n)
for i := n - 1; i >= 0; i-- {
add := k - i
if add > 26 {
add = 26
}
result[i] = byte(add + 'a' - 1)
k -= add
}
return string(result)
}
/**
* @param {number} n
* @param {number} k
* @return {string}
*/
var getSmallestString = function (n, k) {
const result = Array(n).fill(0);
for (let i = n - 1; i >= 0; i--) {
const add = Math.min(k - i, 26);
result[i] = String.fromCharCode(add + 'a'.charCodeAt(0) - 1);
k -= add;
}
return result.join('');
};
class Solution {
fun getSmallestString(n: Int, k: Int): String {
val result = CharArray(n) { 'a' }
var remaining = k - n
for (i in result.lastIndex downTo 0) {
val change = if (remaining > 25) 25 else remaining
result[i] = result[i] + change
remaining -= change
if (remaining == 0) break
}
return String(result)
}
}
class Solution:
def getSmallestString(self, n: int, k: int) -> str:
result = ['a'] * n
for i in range(n - 1, -1, -1):
add = min(k - i, 26)
result[i] = chr(add + ord('a') - 1)
k -= add
return ''.join(result)
class Solution {
func getSmallestString(_ n: Int, _ k: Int) -> String {
var result: [Character] = Array(repeating: "a", count: n), diff = k
for i in stride(from: n - 1, to: -1, by: -1) {
var add = min(diff - i, 26)
result[i] = Character(UnicodeScalar(add + 97 - 1)!)
diff -= add
}
return String(result)
}
}