提瓦特第一深情
提瓦特第一深情
全部文章
题解
板子(1)
归档
标签
去牛客网
登录
/
注册
提瓦特第一深情的博客
寻找远方的自己,追寻圈外的生命
全部文章
/ 题解
(共17篇)
Until the Blue Moon Rises
哥德巴赫猜想:任一大于5的整数都可写成三个质数之和。 由此可以得到两种情况: 1.强哥德巴赫猜想:任一大于2的偶数都可写成两个质数之和6=3+3...... (未被证明,但是同时也没有被推翻,即在本体的范围内强哥猜成立) 2.弱哥德巴赫猜想:任何一个大于5的奇数都能被表示成三个奇质数的和 (已经被证...
C++
2023-09-09
0
23
dfs
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 20, M = N * N; ll h[N], e[M], ne[M], w[M], idx; ll n,m; ll res...
C++
2023-08-26
0
32
List Reshape
#include <bits/stdc++.h> using namespace std; typedef long long ll; const ll N =1e6+5; int main() { ll n,m,t,k,cnt,le,ri; cin>>t; ...
C++
2023-08-16
0
28
Puzzle: Square Jam(递归)
#include <bits/stdc++.h> using namespace std; typedef long long ll; const ll N =1e6+5; ll cnt=0; struct node { ll x,y,z; }; node s[N]; ll ...
C++
2023-08-14
0
113
排列序列
c++: #include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { ll n,k,a[10]; cin>>n>>k; for(ll i=1;i<=...
C++
Python3
2023-07-29
1
37
Election of the King
#include <bits/stdc++.h> using namespace std; const int N=1e6+5; int a[N],s[N]; int check(int m,int l,int r) { if(m-l<=r-m) return 1; ...
C++
2023-07-29
0
32
we are the lights
#include <bits/stdc++.h> using namespace std; typedef long long ll; const ll N=1e6+5; struct node{ ll x,y,z; };// x记录行/列, y记录第几行/第几列, z记录开灯/关灯 ...
C++
2023-07-28
0
30
首页
上一页
1
2
下一页
末页