题目 1160: 出圈 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define MAX 100000int main() { int m,n; while(scanf("%d%d",&n,…… 题解列表 2022年03月12日 0 点赞 0 评论 348 浏览 评分:0.0
StringBuffer中的reverse 摘要:# ```java public class c1031 { public static void main(String[] args) { // TODO 自动生成的方法…… 题解列表 2022年03月12日 0 点赞 0 评论 320 浏览 评分:0.0
二分法求每个机器人的打扫范围 摘要:```cpp #include using namespace std; typedef long long ll; const int N=1e5+5; int n,k,a[N]; in…… 题解列表 2022年03月12日 0 点赞 0 评论 710 浏览 评分:9.9
蓝桥杯2019年第十届省赛真题-完全二叉树的权值-代码短,易懂 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2022年03月12日 0 点赞 0 评论 318 浏览 评分:0.0
编写题解 1106: 奖学金 摘要:解题思路:结构体由总分,学号,语数英三部分组成,然后按照代码所示的嵌套条件进行排序。注意事项:参考代码:#include<stdio.h>typedef struct Student{ int num…… 题解列表 2022年03月12日 0 点赞 0 评论 398 浏览 评分:0.0
小白单纯记录自己题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int temp,j,i,m,n,a[1000],b[1000]…… 题解列表 2022年03月12日 0 点赞 0 评论 316 浏览 评分:0.0
DFS啊啊啊啊啊啊!!! 摘要:```cpp #include using namespace std; int n; int vis[100][100] = {0}; char arr[100][100]; int b…… 题解列表 2022年03月12日 0 点赞 0 评论 526 浏览 评分:9.9
和为给定数 摘要:``` import java.util.Arrays; import java.util.Scanner; public class Demo2176 { public static …… 题解列表 2022年03月12日 0 点赞 0 评论 648 浏览 评分:7.0
C++简短小白解法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long int i,item,sum=0;…… 题解列表 2022年03月12日 0 点赞 0 评论 350 浏览 评分:0.0
队列操作(链队列解法) 摘要: #include #include typedef struct linknode{ int data; struct linknode *next…… 题解列表 2022年03月12日 0 点赞 0 评论 441 浏览 评分:0.0