爱喝零度可乐
爱喝零度可乐
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱喝零度可乐的博客
全部文章
(共85篇)
题解 | #最大序列和#
#include<cstdio> #include<math.h> #include<climits> using namespace std; #define N 1000001 long long dp[N] ; long long a[N] = {0}; i...
2023-03-23
0
298
题解 | #今年的第几天?#
#include<cstdio> bool ISrun(int n){ if( n % 400 == 0 || n % 4 == 0 && n%100 != 0){ return true; }else{ return false; ...
2023-03-23
0
356
题解 | #字符串内排序#
#include<cstdio> #include<string> #include<algorithm> #include<vector> using namespace std; bool comp(char lhs,char rhs){ ...
2023-03-22
0
288
题解 | #后缀子串排序#
#include<cstdio> #include<vector> #include<string> #include<algorithm> using namespace std; bool comp(string lhs ,string rhs){...
2023-03-22
0
237
题解 | #Powerful Calculator#
#include<cstdio> #include<string> using namespace std; string add; string sub; string mul; void ADD(string s1, string s2) { int len1 ...
2023-03-22
0
292
题解 | #神奇的口袋#
#include<cstdio> #include<vector> using namespace std; vector<int> vec; int n; bool visit[25]; int count = 0; void DFS(int cursize,i...
2023-03-22
0
275
题解 | #ZOJ#
#include<cstdio> #include<string> using namespace std; int main() { char arr[101]; scanf("%s", arr); string str = arr; in...
2023-03-20
0
362
题解 | #统计字符#
#include<cstdio> #include<string> #include<cstring> using namespace std ; int main() { char arr[10]; fgets(arr, 10, stdin); ...
2023-03-20
0
286
题解 | #字母统计#
#include<cstdio> #include<string> using namespace std ; int main(){ int ASCA[26]={'A','B','C','D','E','F','G','H','I','J','K','L','M...
2023-03-20
0
268
题解 | #路径打印#
#include<iostream> #include<vector> #include<string> #include<algorithm> using namespace std; struct Node{ int n=0; ...
2023-03-20
0
295
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页