摘要:
// 思路就是用一维数组输入的同时将数据存到向量中,然后对其进行排序,下一步再将数组与向量的数字进行一一匹配,匹配到的一样的次数就是主元的数量,不匹配的特殊标记,最后通过小技巧输出行末不得有空格的情况,最后的那个换行不能忘,不然过不了。#include #include #include using namespace std; const int maxn = 20; int arr[1... 阅读全文
摘要:
#include #include using namespace std; int main() { char c; int g1, g2, s1, s2, k1, k2; cin >> g1 >> c >> s1 >> c >> k1; cin >> g2 >> c >> s2 >> c >> k2; int p1 = g1 * 17 * 29 +... 阅读全文
摘要:
#include #include using namespace std; int n, x, y; // 这样就可以很灵活 void print(double t) { if (n == t) cout > n >> x >> y; for (int a = 99; a >= 10; a--) { int b = a % 10 * 10... 阅读全文