ao_lang
ao_lang
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ao_lang的博客
全部文章
(共18篇)
题解 | #小红的好数#
从98765到01234,至多枚举97531,对于每个数枚举0~9出现的次数,共10次,总数量大概为975310,完全可以通过 #include <bits/stdc++.h> using namespace std; int k; int cnt[10]{}; bool check()...
2024-11-20
1
15
题解 | #大数乘法#
a, b = map(int,input().split()) print(a*b)
2024-04-21
0
177
题解 | #最长无重复子数组#滑动窗口
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr int整型vector the array * @return int...
2024-01-30
0
147
题解 | #打家劫舍(二)#从打家劫舍(一)的思路中得出
#include <iostream> #include <vector> using namespace std; const int N = 200010; int a[N]; int n; int main() { cin>>n; for...
2024-01-30
0
232
题解 | #【模板】前缀和#
#include <bits/stdc++.h> using namespace std; int n,q; const int N = 100010; long long a[N],dp[N];//状态转移方程 int main() { scanf("%d%d&...
2024-01-20
0
173
题解 | #求二叉树的层序遍历#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
2024-01-01
0
187
题解 | #获取字符串长度#
#include <iostream> #include <string> using namespace std; int main() { string arr; getline(cin,arr); cout<<arr.length...
2023-12-20
0
188
题解 | #两个链表的第一个公共结点#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param pHead1 ListNode类 * @param pHead2 ListNode类 * @return Li...
2023-12-12
0
166
题解 | #链表中环的入口结点#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } }; */ class Solution { public: ...
2023-12-11
0
184
题解 | #合并两个排序的链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pHead1 ListNode类...
2023-12-11
0
197
首页
上一页
1
2
下一页
末页