摘要: #include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10; int a[N]; // Fisher-Yates洗牌算法 void shuffle(int n) { srand(time(NULL)); for (int 阅读全文
posted @ 2023-11-16 16:40 可爱的卤蛋 阅读(35) 评论(0) 推荐(0)