摘要: 这道题目要求给定一组数据,选出最多个数使数字两两互质,数据的个数小于14个。 对于这么小的范围,暴力解肯定能过。 用0.1表示是否选该数。 则一共有2^n次选法,遍历即可。 以下为代码 #include<iostream> #include<queue> #include<string> #incl 阅读全文
posted @ 2020-01-12 21:13 Ean1zhi 阅读(143) 评论(0) 推荐(0) 编辑