紫書5-UVA-136-醜數-優先隊列,set

題意: 定義醜數是隻能被2,3,5整除的數,求第1500個醜數 思路: 利用優先隊列,每次取出最小的數,並分別乘上2,3,5,並用set判斷是否已經存在 代碼: #include <iostream> #include <queue> #include <set> using namespace std; typedef long long LL; priority_queue<LL, vect
相關文章
相關標籤/搜索