摘要:
直接看代码#include#include#include#include#include#include#include#define maxn 1000+10using namespace std;typedef vector Vec;void isLOOP(int *a){}int main(... 阅读全文
摘要:
丑数是指不能被除了2,3,5以外的其他素数整数的数,把丑数从小到大排列起来,结果如下:1,2,3,4,5,6,8,9,10,12,15...我们要求第1500个丑数。思考:我们可以要从小到大生成各个丑数,那么怎么生成。这里用到set容器和queue 优先队列set容器用于去重queue用于存放丑数对... 阅读全文
摘要:
#include#include#include#define maxn 1000+10int main(){ int m,n,t,ans[maxn*50]; char s[60][maxn]; scanf("%d",&t); while(t--){ scanf("%d%d",&m,&n)... 阅读全文