multiset中的count统计!!!2069题-[STL训练]Let the Balloon Rise-题解(C++代码) 摘要: #include using namespace std; int main() { int n; while(cin>>n) …… 题解列表 2019年08月18日 0 点赞 0 评论 1053 浏览 评分:9.9
超短精炼代码!!!2070题-[STL训练]Mispelling4-题解(C++代码) 摘要:Mispelling4Mispelling4 #include #include using namespace std; int main() { …… 题解列表 2019年08月18日 0 点赞 0 评论 752 浏览 评分:9.9
上车人数-题解(C语言代码)------------递推求解,简单明了 摘要: #include #define N 10000 int dfs(int k1,int k2,int i,int num); int a,n,m,x,dp[N]=…… 题解列表 2019年08月18日 0 点赞 0 评论 847 浏览 评分:9.9
狂猎来袭 (C++代码)by Zfans. 摘要:```cpp #include #include #include #include using namespace std; vector toBin(int n) { v…… 题解列表 2019年08月19日 0 点赞 0 评论 750 浏览 评分:9.9
台球碰撞-题解(Python代码) 摘要:说真的不知道怎么写题解,反正看见这边没什么python的参考,也算抛砖引玉吧。 这道题就是球要反弹,于是想到无限对称,那么就让球球在平面内自由跑,然后算其走了几个活动范围,再折叠回原空间即可。 那…… 题解列表 2019年08月21日 0 点赞 4 评论 2649 浏览 评分:9.9
蛇行矩阵-题解(C语言代码) 摘要:#include int main(){ int n; int a[101][101]; while(scanf("%d",&n)!=EOF){ in…… 题解列表 2019年08月21日 0 点赞 0 评论 1087 浏览 评分:9.9
众数问题-题解(Java代码)-TreeMap 摘要:TreeMap自带排序,很方便。 ```java import java.util.Scanner; import java.util.TreeMap; public class …… 题解列表 2019年08月21日 0 点赞 0 评论 1203 浏览 评分:9.9
回文串-题解(Java代码)-Stack类 摘要:利用Stack 回文判断 ```java import java.util.Scanner; import java.util.Stack; public class Main { …… 题解列表 2019年08月21日 0 点赞 0 评论 1307 浏览 评分:9.9
蓝桥杯算法提高VIP-打水问题-题解(C++代码)【贪心】【堆优化】 摘要: ``` #include #include #include using namespace std; const int N = 1010; int a[N]; int…… 题解列表 2019年08月21日 0 点赞 0 评论 910 浏览 评分:9.9
Biggest Number-题解(Java代码) DFS+剪枝 摘要:### 题目连接 [Biggest Number](https://www.dotcpp.com/oj/problem.php?id=1077 "Biggest Number") ## 思路 …… 题解列表 2019年08月21日 0 点赞 1 评论 1214 浏览 评分:9.9