花花酱 LeetCode 2242 Maximum Score of a Node Sequence - 刷题找工作 EP396

  Рет қаралды 5,472

Hua Hua

Hua Hua

Күн бұрын

Пікірлер: 12
@christopherwashington9448
@christopherwashington9448 2 жыл бұрын
这题的确有难度。感谢花帅的讲解。
@spiceEx
@spiceEx 2 жыл бұрын
哪天不想刷题了就随机打开huahua视频进入一下状态,对着显示器自言自语“huahua你好我是大家”。
@jasonswift7468
@jasonswift7468 2 жыл бұрын
花花 今年能不能也多讲讲系统设计与AI的知识
@timliu3987
@timliu3987 Жыл бұрын
為什麼 nei[e[0]].size() > 3 要移除第一個而不是最小的🤔
@yizhouxie7694
@yizhouxie7694 2 жыл бұрын
厉害👍
@hikari7314
@hikari7314 2 жыл бұрын
花花有没有兴趣讲解一下2281题
@charlesqwu
@charlesqwu 2 жыл бұрын
What is the EP number? -- for instance, what does the problem's EP396 mean?
@HuaHuaLeetCode
@HuaHuaLeetCode 2 жыл бұрын
episode,the 396th
@spiceEx
@spiceEx 2 жыл бұрын
前排!
@rohit2571
@rohit2571 Жыл бұрын
Please speak in English.
@Dragon-ok6ne
@Dragon-ok6ne 2 жыл бұрын
still got TLE in Java public int maximumScore(int[] scores, int[][] edges) { if (scores == null || edges == null) { return -1; } int n = scores.length; PriorityQueue[] map = new PriorityQueue[n]; for (int i = 0; i < n; i++) { map[i] = new PriorityQueue(); } for (int[] e : edges) { int a = e[0]; int b = e[1]; map[a].add(b); map[b].add(a); if (map[a].size() > n) { map[a].poll(); } if (map[b].size() > n) { map[b].poll(); } } int res = -1; for (int[] e : edges) { int a = e[0]; int b = e[1]; for (int c : map[a]) { for (int d : map[b]) { if (c != d && c != b && d != a) { res = Math.max(res, scores[a] + scores[b] + scores[c] + scores[d]); } } } } return res; }
@HuaHuaLeetCode
@HuaHuaLeetCode 2 жыл бұрын
From: map[a].size() > n to: map[a].size() > 3
How Much Tape To Stop A Lamborghini?
00:15
MrBeast
Рет қаралды 213 МЛН
Кто круче, как думаешь?
00:44
МЯТНАЯ ФАНТА
Рет қаралды 5 МЛН
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 169 МЛН
Coding Interview in 16 Minutes
15:44
jasonmel
Рет қаралды 58 М.
How might LLMs store facts | DL7
22:43
3Blue1Brown
Рет қаралды 776 М.
How I Failed the Google Coding Interview (and lessons I learned)
14:24
Жадные алгоритмы
11:10
про АйТи | IT Pro
Рет қаралды 37 М.
Do NOT Learn Kubernetes Without Knowing These Concepts...
13:01
Travis Media
Рет қаралды 324 М.
3D Gaussian Splatting! - Computerphile
17:40
Computerphile
Рет қаралды 149 М.