STL
Dreamers_Boy
用自己的梦想绘画出前行的路,如此方好!
展开
-
HDU 1004 Let the Balloon Rise 【map】
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1004思路:利用map中<string,int>分别存储颜色(color)和同种颜色的个数(num),建立好键值之间的关系。代码如下:#include<iostream>#include<algorithm>#include<map>usi...原创 2018-07-28 23:14:58 · 179 阅读 · 0 评论 -
HYSBZ 2761 不重复数字【vector+set】
题目链接:https://www.lydsy.com/JudgeOnline/problem.php?id=2761思路:刚做没想太多,直接标记写了一个代码,结果WA,错误的代码:#include<stdio.h>#include<algorithm>using namespace std;int v[200000000];int main(){ int...原创 2018-07-28 23:25:38 · 209 阅读 · 0 评论 -
HDU 1263 水果 【map】
http://acm.hdu.edu.cn/showproblem.php?pid=1263思路:这种题我看透了,调用STL中的二维map<string,map<string,int> >ma(最后两个>>要用空格隔开);存储相应的信息,最后使用迭代器的方式进行输出。#include<iostream>#include<algori...原创 2018-07-28 23:35:57 · 201 阅读 · 0 评论 -
HDU 1412 {A} + {B} 【set】
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1412思路:就想多搜集两道set的,代码如下:#include<iostream>#include<algorithm>#include<set>int a[100005];using namespace std;int main(){ set&...原创 2018-07-28 23:40:19 · 175 阅读 · 0 评论 -
2017 ACM-ICPC 亚洲区(乌鲁木齐赛区)网络赛H.Skiing 【STL】
题目链接:点这里!In this winter holiday, Bob has a plan for skiing at the mountain resort.This ski resort has M different ski paths and NNdifferent flags situated at those turning points.The ii-th path ...原创 2018-09-07 20:05:20 · 287 阅读 · 0 评论 -
next_permutation一些介绍
(1)基本用法(参照王小二的哈哈):#include<bits/stdc++.h>using namespace std;const int maxn = 1e3;int a[maxn];int main(){ int n; while(cin>>n) { for(int i=0;i<n;i++) ...原创 2018-09-07 20:27:19 · 1329 阅读 · 0 评论 -
hdu 1251 统计难题 【map】
Time limit2000 msMemory limit65535 kBIgnatius最近遇到一个难题,老师交给他很多单词(只有小写字母组成,不会有重复的单词出现),现在老师要他统计出以某个字符串为前缀的单词数量(单词本身也是自己的前缀). Input输入数据的第一部分是一张单词表,每行一个单词,单词的长度不超过10,它们代表的是老师交给Ignatius统计的单词,一个...原创 2018-09-06 11:41:05 · 210 阅读 · 0 评论 -
hdu 2094 产生冠军 【拓扑】
Time limit1000 msMemory limit32768 kB有一群人,打乒乓球比赛,两两捉对撕杀,每两个人之间最多打一场比赛。 球赛的规则如下: 如果A打败了B,B又打败了C,而A与C之间没有进行过比赛,那么就认定,A一定能打败C。 如果A打败了B,B又打败了C,而且,C又打败了A,那么A、B、C三者都不可能成为冠军。 根据这个规则,无需循环较量,或许就能确定...原创 2018-09-06 11:01:09 · 228 阅读 · 0 评论