##思路 最长上升子序列的变形+记录路径 ##AC代码 #include<iostream> #include<cmath> #include<string.h> #include<algorithm> #include<stdio.h> #include<iomanip> #define inf ...
分类:
其他好文 时间:
2021-04-19 14:43:51
阅读次数:
0
FatMouse believes that the fatter a mouse is, the faster it runs. To disprove this, you want to take the data on a collection of mice and put as large ...
分类:
其他好文 时间:
2020-09-23 23:55:07
阅读次数:
46
定义函数的语法: def 函数名(参数) (语句) 1 #函数和变量 2 #函数里的变量与脚本里的变量是没有联系的。 3 def cheese_and_crackers(cheese_count,boxes_of_crackers): 4 print(f"You have {cheese_count ...
分类:
编程语言 时间:
2020-07-18 11:20:21
阅读次数:
87
#include<bits/stdc++.h> const int N=100+10; const int T=5000; using namespace std; int n,t,k,ans; int v[N],h[N],f[T]; int now; //如果不考虑大的,x=t-h[i] //考虑 ...
分类:
其他好文 时间:
2020-06-01 21:08:26
阅读次数:
98
贪心策略 总是做出当前做好的选择。 贪心策略:将问题分成多个子问题;子问题求局部最优解;局部最优解组合成原问题的解。 分类:简单贪心 区间贪心 咖啡豆问题 题目描述FatMouse prepared M pounds of cat food, ready to trade with the cats ...
分类:
编程语言 时间:
2020-05-14 11:07:53
阅读次数:
78
FatMouse's Speed FatMouse believes that the fatter a mouse is, the faster it runs. To disprove this, you want to take the data on a collection of mice ...
分类:
其他好文 时间:
2020-04-05 00:45:28
阅读次数:
91
Description "HDU 1160" FatMouse believes that the fatter a mouse is, the faster it runs. To disprove this, you want to take the data on a collection o ...
分类:
其他好文 时间:
2020-03-30 19:29:07
阅读次数:
76
``` #include #include #include #include #include #include using namespace std; int n; double h,r; struct Cheese{ double x,y,z; //重载运算符 bool operator>T... ...
分类:
其他好文 时间:
2020-02-13 00:19:15
阅读次数:
47
#include<cstdio> #include<iostream> #include<cstring> using namespace std; int n,k; int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}}; int dp[101][101],mp[101 ...
分类:
其他好文 时间:
2020-01-28 19:28:46
阅读次数:
61
#include<cstdio> #include<cstdlib> #include<cstring> #include<algorithm> using namespace std; struct node { int w, s; int index; //储存标号 } mouse[1005]; ...
分类:
其他好文 时间:
2020-01-28 17:24:42
阅读次数:
90