topcoder算法练习3
SRM144 DIV1 1100 point
Problem Statement |
|||||||||||||
|
NOTE: There are images in the examples section of this problem statement that help describe the problem. Please view the problem statement in the HTML window to view them. Given a picture composed entirely of horizontal and vertical line segments, calculate the minimum number of times you must lift your pen to trace every line segment in the picture exactly n times. Each line segment will be of the form "<x1> <y1> <x2> <y2>" (quotes for clarity), representing a segment from (x1,y1) to (x2,y2). Segments may cross each other. Segments may also overlap, in which case you should count the overlapping region as appearing in the drawing only once. For example, say the drawing were composed of two lines: one from (6,4) to (9,4), and one from (8,4) to (14,4). Even though they overlap from (8,4) to (9,4), you should treat the drawing as if it were a single line from (6,4) to (14,4). You would not need to lift your pen at all to trace this drawing. |
|||||||||||||
Definition |
|||||||||||||
|
|||||||||||||
Notes |
|||||||||||||
| - | The pen starts on the paper at a location of your choice. This initial placement does not count toward the number of times that the pen needs to be lifted. | ||||||||||||
Constraints |
|||||||||||||
| - | segments will contain between 1 and 50 elements, inclusive. | ||||||||||||
| - | Each element of segments will contain between 7 and 50 characters, inclusive. | ||||||||||||
| - | Each element of segments will be in the format "<X1>_<Y1>_<X2>_<Y2>" (quotes for clarity). The underscore character represents exactly one space. The string will have no leading or trailing spaces. | ||||||||||||
| - | <X1>, <Y1>, <X2>, and <Y2> will each be between -1000000 and 1000000, inclusive, with no unnecessary leading zeroes. | ||||||||||||
| - | Each element of segments will represent a horizontal or vertical line segment. No line segment will reduce to a point. | ||||||||||||
| - | n will be between 1 and 1000000, inclusive. | ||||||||||||
Examples |
|||||||||||||
| 0) | |||||||||||||
|
|||||||||||||
| 1) | |||||||||||||
|
|||||||||||||
| 2) | |||||||||||||
|
|||||||||||||
| 3) | |||||||||||||
|
|||||||||||||
| 4) | |||||||||||||
|
|||||||||||||
| 5) | |||||||||||||
|
|||||||||||||
This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2003, TopCoder, Inc. All rights reserved.
这道题思路不难,但是还是感觉实现起来好费劲
思路是这样的
step1 将字符串数组编程数字线段列表
step2 去掉overlap的得到不重叠的线段组
step3 找交叉点,包括端点 记录每个点的交叉的出度 再乘以n
step4 一对奇数出度点代表 抬笔一次
这个程序太复杂,根本没写完,自己太挫了,觉得算overlap好麻烦啊
#include <vector>
#include <list>
#include <string>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h> using namespace std; class PenLift{
public:
int numTimes(vector <string>, int);
};
int PenLift::numTimes(vector <string> segments, int n){
//turn string segment vector to int segment vector
int penlift = ;
int segnum = segments.size();
list<int*> seglist;
int i,j,k;
int start,space;
string sseg;
string snum; // string for single number
string::iterator iter;
for(i=;i<segnum;i++){
start=;
space=;
sseg=segments.at(i);
j=;
k=;
int nseg[];
for(iter=sseg.begin();iter!=sseg.end();iter++){
if(*iter==' '){
space = j;
snum=sseg.substr(start,space-start);
nseg[k]=atoi(snum.c_str());
start = space+;
k++;
}
j++;
}
snum=sseg.substr(start,j-start);
snum=sseg.substr(start,space-start);
nseg[k]=atoi(snum.c_str());
seglist.push_back(nseg);
}
//reduce overlap
list<int*>::iterator iteri,iterj,itert;
for(iteri=seglist.begin();iteri!=seglist.end();iteri++){
for(iterj=iteri++;iterj!=seglist.end();iterj++){
if((int*)(*iteri)[]==(int*)(*iterj)[]){
if(iterj[]<=iterj[]){
if(iteri[]>=iterj[]&&iteri[]<=iterj[]){
if(iteri[]>=iterj[]&&iteri[]<=iterj[]){ }else if( ){}
}
}else{ }
}
}
}
return penlift;
}
topcoder算法练习3的更多相关文章
- topcoder算法练习2
Problem Statement In most states, gamblers can choose from a wide variety of different lottery ...
- ITWorld:2014年全球最杰出的14位编程天才
近日,ITWorld 整理全球最杰出的 14 位程序员,一起来看下让我们膜拜的这些大神都有哪些?(排名不分先后) 1.Jon Skeet 个人名望:程序技术问答网站 Stack Overflow 总排 ...
- BFS/DFS算法介绍与实现(转)
广度优先搜索(Breadth-First-Search)和深度优先搜索(Deep-First-Search)是搜索策略中最经常用到的两种方法,特别常用于图的搜索.其中有很多的算法都用到了这两种思想,比 ...
- IT求职中,笔试、面试的算法准备
PS:此文章为转载,源地址:http://www.newsmth.net/nForum/#!article/CoderInterview/849 作者应该是在美国进行的笔试面试,感觉面试的的公 ...
- *[topcoder]LCMSetEasy
http://community.topcoder.com/stat?c=problem_statement&pm=13040 DFS集合全排列+LCM和GCD.但事实上,有更简单的算法,列在 ...
- *[topcoder]LittleElephantAndBalls
http://community.topcoder.com/stat?c=problem_statement&pm=12758&rd=15704 topcoder的题经常需要找规律,而 ...
- [topcoder]KingdomReorganization
http://community.topcoder.com/stat?c=problem_statement&pm=11282&rd=14724 这道题是最小生成树,但怎么转化是关键. ...
- [topcoder]ActivateGame
http://community.topcoder.com/stat?c=problem_statement&pm=10750&rd=14153 http://apps.topcode ...
- [topcoder]BestRoads
http://community.topcoder.com/stat?c=problem_statement&pm=10172&rd=13515 http://community.to ...
随机推荐
- XP与Win2003下网站配置
一. 安装.net 4.0 1. 双击打开文件dotNetFx40_Full_x86_x64.exe.如图4.1 所示 (图4.1) 2. 勾选[我已阅读并结束许可条款],点击[安装]按钮.如图4.2 ...
- Hdu 2475-Box LCT,动态树
Box Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submis ...
- 简单的LR核心项集和Goto表填充演示程序
/* * 该程序用于计算语言的核心项集 * RexfieldVon * 2013年8月24日21:19:25 */ #include <stdio.h> #include <stdl ...
- java对Ldap操作1
package ldap;import java.util.List;import ldap.pojo.LdapPersonInfo;/** * access Ldap * * @author 张亮 ...
- Django教程:第一个Django应用程序(4)
Django教程:第一个Django应用程序(4) 2013-10-09 磁针石 #承接软件自动化实施与培训等gtalk:ouyangchongwu#gmail.comqq 37391319 #博客: ...
- Eclipse中修改SVN用户名和密码方法
于在svn 的界面中并没有为我们提供直接更换用户名密码的地方,所以一旦我们需要更换用户名的就需要自己想一些办法. 解决方案: 在Eclipse 使用SVN 的过程中大多数人往往习惯把访问SVN 的用户 ...
- 常用的js效验
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- grep:Binary file (standard input) matches
grep "key" xxx.log时输出 Binary file xxx.log matches 百度了一下:grep觉得这是二进制文件.解决方式:grep -a. grep - ...
- MySQL 一致性读 深入研究 digdeep博客学习
http://www.cnblogs.com/digdeep/p/4947694.html 一致性读,又称为快照读.使用的是MVCC机制读取undo中的已经提交的数据.所以它的读取是非阻塞的. 相关文 ...
- Qt 学习之路:QML 组件
前面我们简单介绍了几种 QML 的基本元素.QML 可以由这些基本元素组合成一个复杂的元素,方便以后我们的重用.这种组合元素就被称为组件.组件就是一种可重用的元素.QML 提供了很多方法来创建组件.不 ...


