2990: 十进制到八进制 摘要:解题思路:注意事项:参考代码:import java.lang.*; import java.math.BigDecimal; import java.util.Scanner; pub…… 题解列表 2024年04月23日 0 点赞 0 评论 233 浏览 评分:0.0
STL deque优雅方案 摘要:解题思路:使用STL队列维护m个连续奇数注意事项:参考代码:#include<iostream> #include<cmath> #include<deque> using namespace …… 题解列表 2024年04月23日 0 点赞 0 评论 147 浏览 评分:0.0
最匹配矩阵 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<utility>using namespace std;int Difference…… 题解列表 2024年04月23日 0 点赞 0 评论 259 浏览 评分:0.0
分布式队列AC做法——主要看偏移量,与元素值无关 摘要:参考代码:import java.io.*; import java.util.*; public class Main { static BufferedReader in = n…… 题解列表 2024年04月23日 2 点赞 0 评论 797 浏览 评分:9.9
dfs经典马走日 摘要: ```cpp #include using namespace std; #define int long long #define endl "\n" const int N…… 题解列表 2024年04月23日 0 点赞 0 评论 252 浏览 评分:9.9
威佐夫博弈论罢了 摘要:```cpp #include using namespace std; signed main(){ int a = 0, b = 0; while (cin>>a>…… 题解列表 2024年04月23日 0 点赞 0 评论 247 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>int max_gys(int a,int b) { int temp;…… 题解列表 2024年04月23日 0 点赞 0 评论 161 浏览 评分:0.0
手写一个快速排序算法 摘要:解题思路:快速排序算法注意事项:多关键字比较参考代码:#include <stdio.h> typedef struct _Point { int x, y, z; } Point;…… 题解列表 2024年04月23日 0 点赞 0 评论 216 浏览 评分:0.0
python优势-自带高精度 摘要:参考代码:while True: n = int(input()) if n == 0: break if n % 17 == 0:   题解列表 2024年04月23日 0 点赞 0 评论 200 浏览 评分:0.0
2991: 八进制到十进制 摘要:解题思路:注意事项:参考代码:import java.lang.*; import java.util.Scanner; public class Main { public st…… 题解列表 2024年04月22日 0 点赞 0 评论 156 浏览 评分:0.0