题解列表
编写题解 1100: 采药
摘要:解题思路:注意事项:参考代码:T, M = map(int, input().split())grass_time = []grass_value = []for _ in range(M): ……
蓝桥杯基础练习VIP-矩形面积交
摘要:解题思路:思路参照了python组第一个”D“大佬的题解,同样的思路把代码简化了一下,更方便理解一点参考代码:x1,y1,x2,y2=list(map(float,input().split()))x……
省赛真题-纸张尺寸o_O
摘要:解题思路:注意事项:参考代码:size=input()a=int(size[1])length=1189width=841for i in range(a): length=length//2 ……
克鲁斯卡尔(用到并查集)
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<algorithm>
using namespace std;
const int N=110,M=1e6+……
纯粹的最小生成树算法
摘要:#include<iostream>
#include<algorithm>
using namespace std;
const int N=110,M=1e6+10;
int p[N],……
[编程入门]自定义函数之字符提取
摘要:解题思路:注意事项:参考代码:package function;
//题目 1033: [编程入门]自定义函数之字符提取
import java.util.Scanner;
public cla……
蓝桥杯2019年第十届省赛真题-旋转(Java)
摘要:```java
import java.util.Scanner;
public class Main {
public static void main(String[] args……
编写题解 2880: 计算鞍点
摘要:解题思路:找到每一行的最大值后,立即判断是不是所在列的最小值。注意事项:参考代码:#include <stdio.h>int main(){ int arr[5][5] = { 0 }; for (i……