第一题 洗牌 思路就 是模拟洗牌 https://paste.ubuntu.com/p/xRxpjGWh4k/ #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; #define mp make_pair vector<int> res,tleft,tright; map<int,int> vis; int main() { int a,n,t; for(int i=0;i<13;i++) ...