Markdown
本文旨在收集 markdown 指令操作 1. 标题 在Markdown中,您可以使用#符号来创建标题。#符号的数量决定了标题的级别。 # 一级标题 ## 二级标题 ### 三级标题 #### 四级标题 ##### 五级标题 ###### 六级标题 2. 段落 在Markdown中,您可以使用空行来创建段落。以下是一个示例: 这是第一段。 这是第二段。 3. 强调 在...
本文旨在收集 markdown 指令操作 1. 标题 在Markdown中,您可以使用#符号来创建标题。#符号的数量决定了标题的级别。 # 一级标题 ## 二级标题 ### 三级标题 #### 四级标题 ##### 五级标题 ###### 六级标题 2. 段落 在Markdown中,您可以使用空行来创建段落。以下是一个示例: 这是第一段。 这是第二段。 3. 强调 在...
线段树 #include <bits/stdc++.h> using namespace std; const int N = 1e6+6; const int M = 3e5+7; #define ll long long #define en '\n' #define debug cout<<"------" #define pii pair<int,in...
floyed #include <bits/stdc++.h> using namespace std; #define INF 0x3f3f3f3f const int N=500; int s[N][N]; int main() { int n,m,t; // cout<<INF<<endl; cin>>n>>...
迪杰斯特拉 #include <bits/stdc++.h> using namespace std; const int N = 1e6+6; const int M = 3e5+7; #define ll long long #define en '\n' #define debug cout<<"------" #define pii pair<int,...
高精度乘法 #include <bits/stdc++.h> using namespace std; const int N = 1e6+7; int a[N]; string re(string s) { for(int i=0,j=s.size()-1;i<j;i++,j--)swap(s[i],s[j]); return s; } int main() { ...
高精度减法 #include <bits/stdc++.h> using namespace std; string re(string s) { for(int i=0,j=s.size()-1;i<j;i++,j--)swap(s[i],s[j]); return s; } string solve(string a,string b) { string ans...
高精度加法 #include<bits/stdc++.h> using namespace std; string re(string s) { for(int i=0,j=s.size()-1;i<j;i++,j--)swap(s[i],s[j]); return s; } string add(string a,string b) { if(a.size()&...