T9的空间
You will never walk alone!
C++博客
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
69 随笔 :: 0 文章 :: 28 评论 :: 0 Trackbacks
<
2013年5月
>
日
一
二
三
四
五
六
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
公告
如果笔记中有误导路人的段落,请帮忙email给我,谢谢 shuoxie@gmail.com
随笔分类
APUE(15)
(rss)
Compile & Link(3)
(rss)
Computation Geometry(5)
(rss)
Data Structures(8)
(rss)
Graph(6)
(rss)
Java(2)
(rss)
Linux(2)
(rss)
My litter life(2)
(rss)
Number Theory(4)
(rss)
Useful information(3)
(rss)
细节(2)
(rss)
随笔档案
2016年8月 (1)
2014年7月 (1)
2013年12月 (2)
2013年10月 (3)
2013年6月 (7)
2013年5月 (8)
2012年9月 (1)
2009年6月 (3)
2009年4月 (2)
2009年2月 (1)
2009年1月 (1)
2008年12月 (2)
2008年11月 (8)
2008年10月 (6)
2008年9月 (14)
2008年8月 (9)
相册
Temp
收藏夹
ACM_algorithm(1)
(rss)
我的链接
Peking university judgeonline
Saratov State University _Online Contester
STL 中文站
Topcoder
Waterloo Programming Contests
搜索
积分与排名
积分 - 47393
排名 - 470
最新随笔
1. 算法导论读书笔记.
2. Linux memory summary
3. 高性能JNI
4. 第二章-编译和链接
5. 第一章-温故而知新
6. 程序员自我修养-读书笔记
7. LTZ看书之APUE14
8. LTZ看书之APUE13
9. LTZ看书之APUE12
10. LTZ看书之APUE11
最新评论
1. re: ACM OJ Collection
评论内容较长,点击标题查看
--professional resume writing service
pku 1269 (平面两直线的位置关系)
直接用直线方程Ax+By+C=0来判断的
Source Code
Problem:
1269
User: Torres
Memory: 196K Time: 0MS
Language: C
++
Result: Accepted
Source Code
#include
<
iostream
>
#include
<
cmath
>
using
namespace
std;
typedef
struct
point
{
double
x,y;
point(
double
a
=
0
,
double
b
=
0
)
{x
=
a;y
=
b;}
}
point;
typedef
struct
line
{
double
A,B,C;
line(point a,point b)
{
A
=-
(b.y
-
a.y);
B
=
b.x
-
a.x;
C
=
a.x
*
(b.y
-
a.y)
-
a.y
*
(b.x
-
a.x);
}
}
line;
point l12;
//
要求的交点
int
isintersect(line l1,line l2)
{
if
(l1.A
*
l2.B
==
l2.A
*
l1.B)
{
if
(l1.A
==
0
&&
l2.A
==
0
&&
l1.C
*
l2.B
==
l2.C
*
l1.B
||
l1.B
==
0
&&
l2.B
==
0
&&
l1.C
*
l2.A
==
l2.C
*
l1.A)
return
1
;
else
if
(l1.A
!=
0
&&
l2.B
!=
0
&&
l1.B
*
l2.C
==
l1.C
*
l2.B)
return
1
;
else
return
-
1
;
}
else
{
l12.x
=
(l2.B
*
l1.C
-
l1.B
*
l2.C)
/
(l2.A
*
l1.B
-
l1.A
*
l2.B);
l12.y
=
(l2.A
*
l1.C
-
l1.A
*
l2.C)
/
(l1.A
*
l2.B
-
l2.A
*
l1.B);
return
0
;
}
}
int
main()
{
int
ca;
point s1,e1,s2,e2;
//
freopen("in.txt","r",stdin);
scanf(
"
%d
"
,
&
ca);
printf(
"
INTERSECTING LINES OUTPUT\n
"
);
while
(ca
--
)
{
scanf(
"
%lf%lf%lf%lf
"
,
&
s1.x,
&
s1.y,
&
e1.x,
&
e1.y);
scanf(
"
%lf%lf%lf%lf
"
,
&
s2.x,
&
s2.y,
&
e2.x,
&
e2.y);
line l1(s1,e1),l2(s2,e2);
int
flag
=
isintersect(l1,l2);
if
(flag
==-
1
)printf(
"
NONE\n
"
);
else
if
(flag
==
1
)printf(
"
LINE\n
"
);
else
printf(
"
POINT %.2lf %.2lf\n
"
,l12.x,l12.y);
}
printf(
"
END OF OUTPUT\n
"
);
return
0
;
}
posted on 2008-09-24 21:29
Torres
阅读(229)
评论(0)
编辑
收藏
引用
所属分类:
Computation Geometry
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
pku 1269 (平面两直线的位置关系)
判断点是否在多边形中
pku1113(凸包的周长)
pku2187(凸包)
HUST1175(多边形相交模板)
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
Powered by:
C++博客
Copyright © Torres