题解列表

筛选

还是畅通工程

摘要:解题思路:最小生成树模版题注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int f[1000]; struct node { ……

直接解方程组

摘要:解题思路:注意事项:参考代码:x, a, y, b = map(int, input().split())m = b*y - a*xn = b- ares= m / nprint(&#39;%.2f&……

注意‘&#039;x"要大写

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int h,l,i,z,y; int d;const int n;const int j;int *p=&j;……

1226题解——贪心

摘要:解题思路:分奇偶两种情况考虑。注意事项:参考代码:#include <stdio.h> #include <iostream>   using namespace std;   int gc……

切开字符串-C语言

摘要:## 切开字符串-C语言 函数:正回文子串种类(manacher算法)、所有子串种类-正回文子串种类 ``` #include #define MaxChar 100001 int O……

数学真的很重要

摘要:解题思路:这是一个数学类型的题目,代码很简单,只要核心想到了答案就出来了。最大的不能买到的数字就是两个数字的最小公倍数再减去它们之和(设它为t),为什么是这样呢?最小公倍数就是两个数都可以单独构成,在……