摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int N = 200010; 4 double INF = 1e10; 5 struct Point { 6 double x, y; 7 bool type; 8 } points 阅读全文
posted @ 2020-11-18 20:23 kyk333 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int N = 800; 4 char g[N][N]; 5 int mul(int n) { 6 int res = 1; 7 for (int i = 1; i <= n; i++ 阅读全文
posted @ 2020-11-18 10:35 kyk333 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int N = 14; 4 vector<int> cards[N]; //1~13,vector存储初始正面朝下着的牌的情况 5 int open[N]; //正面朝上只需要存储每一 阅读全文
posted @ 2020-11-18 10:33 kyk333 阅读(137) 评论(0) 推荐(0) 编辑