牛马ID
牛马ID
全部文章
分类
题解(81)
归档
标签
去牛客网
登录
/
注册
牛马ID的博客
全部文章
(共135篇)
题解 | #进制转换#
#include <bits/stdc++.h> #include <cctype> using namespace std; int main() { unordered_map<char,int> map; map['A'] = 10; m...
2023-09-25
0
240
题解 | #环形数组的连续子数组最大和#
#include <bits/stdc++.h> using namespace std; // 最大连续和 + 最小连续和 = sum ,二者和一就是sum int main() { int n; cin >> n; vector<int&g...
2023-02-27
0
344
题解 | #乘积为正数的最长连续子数组#
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<int> arr(n); for(int i = 0; i < n...
2023-02-27
0
351
题解 | #连续子数组的最大乘积#
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<int> arr(n); for(int i = 0; i < n...
2023-02-26
0
270
题解 | #重排链表#
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
2022-12-04
0
275
题解 | #数独#
class Solution { public: bool valid = false; void solveSudoku(vector<vector<char>>& board) { int n = board.size(); ...
2022-12-03
0
271
题解 | #吃冰棍#
#include <bits/stdc++.h> using namespace std; typedef long long ll; // 可以嗦任意次冰棍 // ^ : 两数相加,...
C++
2022-10-10
0
384
题解 | #购物#
/* * 不是特别懂,这个思路,照着题解敲一遍,日后再来,好好研究!!! */ #include <bits/stdc++.h> using namespace std; typedef long long ll;...
C++
2022-10-09
0
304
题解 | #数列构造#
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { &nb...
C++
2022-10-09
0
284
题解 | #不自然的序列#
#include <bits/stdc++.h> using namespace std; int main() { int n; &nb...
C++
2022-10-09
0
274
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页