摘要:
1 #include<bits/stdc++.h> 2 3 typedef long long ll; 4 5 const int N = 4e5+10,M = N * 4,INF = 0x3f3f3f3f,mod = 1e9+7; 6 struct Node{ 7 int x,y; 8 bool 阅读全文
2022年4月6日
2022年3月29日
摘要:
1 #include <bits/stdc++.h> 2 //分块法 3 using namespace std; 4 5 template <class T>/*模板,表示给一个未排序的数组排序后对应的下标*/ 6 vector<int> make_index(const vector<T>& a 阅读全文
摘要:
1 #include <bits/stdc++.h> 2 3 using namespace std; 4 5 const int N = (1 << 8) + 1; 6 7 int n, m; 8 9 double a[N][N], dp[9][N][N]; 10 //二维数组的子矩阵和 11 d 阅读全文
2022年3月27日
摘要:
1 #include<bits/stdc++.h> 2 using namespace std; 3 using LL = long long; 4 #define eb(n) emplace_back(n) 5 vector<LL> ans; 6 inline LL trans(LL n) { 7 阅读全文
摘要:
#include <bits/stdc++.h> using namespace std; using LL = long long; int a[1005]; int main() { int n; scanf("%d", &n); for (int i = 1; i <= n; i++) sca 阅读全文
2022年3月24日
摘要:
差点点跑满了。。这他妈常数真的大 网上python解法一个都过不了 1 #include <bits/stdc++.h> 2 using namespace std; 3 using LL = long long; 4 map<LL, int> mp; 5 const LL comb[10][3] 阅读全文
摘要:
1 #include <bits/stdc++.h> 2 using namespace std; 3 using LL = long long; 4 const LL P = 998244353; 5 int main(){ 6 int T; 7 cin>>T; 8 while(T--){ 9 L 阅读全文
摘要:
1 #include<iostream> 2 #include<string> 3 #include<cstring> 4 #include<algorithm> 5 #include<cmath> 6 7 using namespace std; 8 9 int main() 10 { 11 in 阅读全文
摘要:
#pragma GCC optimize("-Ofast","-funroll-all-loops") #include<bits/stdc++.h> //#define int long long using namespace std; const int N=1e6+10; int n,f[N 阅读全文