three_0430
three_0430
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
three_0430的博客
全部文章
(共14篇)
题解 | #比特币最佳买卖时机#
import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new S...
2024-03-03
0
217
题解 | #比特币最佳买卖时机#
#include <iostream> #include<vector> #include<math.h> using namespace std; int maxProfit(vector<int>& v){ int minn = ...
2024-03-03
0
196
题解 | #鸡鸭分类问题#
import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new S...
2024-03-03
0
243
题解 | #整数成绩最大化#
#include <iostream> #include <vector> using namespace std; int integerBreak(int n) { vector<int> dp(n + 1, 0);//dp[i]表示整数i分解为至少...
2024-03-03
0
224
题解 | #整数成绩最大化#
#include <bits/stdc++.h> using namespace std; int main() { int n; while (cin >> n) { // 注意 while 处理多个 case int result = 1...
2024-03-03
0
208
题解 | #年会抢玩偶游戏#
import java.util.Scanner; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in =...
2024-02-29
0
283
题解 | #序列找数#
import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new S...
2024-02-29
0
169
题解 | #年会抢玩偶游戏#
#include <iostream> using namespace std; int main() { int n, m, k; cin >> n >> m >> k; if(k <= 0 || n <= 0 ...
2023-10-16
0
216
题解 | #小招喵跑步#
#include <iostream> using namespace std; int f(int x){ if(x < 3){ return x; } else if(x % 2 == 0){ // return f(x...
2023-10-15
0
395
题解 | #序列找数#
#include <iostream> #include <set> using namespace std; int main() { int n, temp; cin >> n; set<int> a; int b...
2023-10-15
0
258
首页
上一页
1
2
下一页
末页