题解列表
1611: 蓝桥杯算法训练VIP-传纸条(Python3)三维DP
摘要:解题思路:类似题目:https://www.dotcpp.com/oj/problem1639.html 题解:https://blog.dotcpp.com/a/77794参考:http://……
题解 2061: [STL训练]周瑜的反间计. 蒋干还会用电脑跑程序???为啥没人做?是因为前戏太多了嘛
摘要:参考代码:#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
int main() {……
改进了别人的代码,删除的数字不能链表在最后
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct STU { int num; struct STU* next;}li……
就两行代码,来看看吧
摘要:```java
import java.util.Scanner;
public class Main {
public static void main(String[] ar……
C语言训练-"水仙花数"问题2
摘要:参考代码:#include<stdio.h>#include<math.h>main(){ int n,a,b,c; for(n=100;n<=999;n++) { ……
容易理解的C语言代码
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
int LeapYear(int year) //判断是否为闰年,闰年2月有29天,平年28天
{
if (ye……
信息学奥赛一本通T1588-数字游戏-题解(C++代码)
摘要: 数位DP板子题(本质记忆化搜索)constexpr auto Inf = 0X3F3F3F3F;
#ifndef LOCAL
#include <bits/stdc++.h>
……
求s=a+aa+aaa+aaaa+aa...a的值
摘要:解题思路:注意事项:参考代码:def fun(n,a):
x=a
for i in range(1,n):
x = x*10
x +=&n