Re: [閒聊] 每日LeetCode

作者: wu10200512 (廷廷)   2024-02-24 20:05:23
原本用map寫會超時
後來看別人用pq
換個思路重寫一個
2092. Find All People With Secret
class Solution {
public:
#define p pair<int, int>
vector<int> findAllPeople(int n, vector<vector<int>>& meetings, int
firstPerson) {
vector<pair<int,int>> adj[n];
for (auto it : meetings) {
adj[it[0]].push_back({it[1],it[2]});
adj[it[1]].push_back({it[0],it[2]});
}
priority_queue<p, vector<p>, greater<p> > pq;
pq.push({0, 0});
pq.push({0, firstPerson});
vector<int> vis(n, 0);
while (!pq.empty()) {
auto it = pq.top();
int time=it.first;
int person=it.second;
pq.pop();
if (vis[person]) {
continue;
}
vis[person]++;
for (auto it : adj[person]) {
if (!vis[it.first] && it.second >= time) {
pq.push({it.second, it.first});
}
}
}
vector<int> ans;
for (int i = 0; i < n; ++i) {
if (vis[i]) {
ans.push_back(i);
}
}
return ans;
}
};
作者: Che31128 (justjoke)   2024-02-24 20:06:00
大師
作者: JIWP (JIWP)   2024-02-24 20:07:00
大師
作者: sustainer123 (caster)   2024-02-24 20:11:00
大師
作者: DJYOSHITAKA (Evans)   2024-02-24 20:36:00
大師 我放推了

Links booklink

Contact Us: admin [ a t ] ucptt.com