技术笔记:UVALive4426BlasttheEnemy!计算几何求重心

简介: 技术笔记:UVALive4426BlasttheEnemy!计算几何求重心

D - Blast the Enemy!


Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu


Submit Status Practice UVALive 4426


Description


A new computer game has //代码效果参考:http://www.lyjsj.net.cn/wz/art_23104.html

just arrived and as an active and always-in-the-scene player, you should finish it before the next university term starts. At each stage of this game, you have to shoot an enemy robot on its weakness point. The weakness point of a robot is always the center of mass" of its 2D shape in the screen. Fortunately, all robot shapes are simple polygons with uniform density and you can write programs to calculate exactly the center of mass for each polygon.</p> <p>Let's have a more formal definition for center of mass (COM). The center of mass for a square, (also circle, and other symmetric shapes) is its center point. And, if a simple shape C is partitioned into two simple shapes A and B with areas SA and SB , then COM(C) (as a vector) can be calculated by </p> <p>COM( C) = .</p> <p>As a more formal definition, for a simple shape A with area SA : </p> <p>COM( A) = </p> <p>Input</p> <p>The input contains a number of robot definitions. Each robot definition starts with a line containing n , the number of vertices in robot's polygon (n100) . The polygon vertices are //代码效果参考:http://www.lyjsj.net.cn/wz/art_23094.html<p></p> specified in the next n lines (in either clockwise or counter-clock-wise order). Each of these lines contains two space-separated integers showing the coordinates of the corresponding vertex. The absolute value of the coordinates does not exceed 100. The case of n = 0 shows the end of input and should not be processed. </p> <p>Output</p> <p>The i -th line of the output should be of the form Stage #i:x y " (omit the quotes), where ( x, y ) is the center of mass for the i -th robot in the input. The coordinates must be rounded to exactly 6 digits after the decimal point.

Sample Input


4


0 0


0 1


1 1


1 0


3


0 1


1 0


2 2


8


1 1


2 1


2 7


3 7


3 0


0 0


0 7


1 7


0


Sample Output


Stage #1: 0.500000 0.500000


Stage #2: 1.000000 1.000000


Stage #3: 1.500000 3.300000


#include


#include


#include


#include


#include


#include


#include [span style="color: rgba(0, 0, 255, 1)">set

#include


#include


#include


#include


#include


typedef long long ll;


using namespace std;


//freopen("D.in","r",stdin);


//freopen("D.out","w",stdout);


#define sspeed ios_base::sync_with_stdio(0);cin.tie(0)


#define maxn 1001


const int inf=0x7fffffff; //无限大


int main()


{


int N;


double x【maxn】,y【maxn】,a【maxn】,ax【maxn】,ay【maxn】,xg=0,yg=0,a1=0,b1=0,c=0;


int t=0;


while(cin]N){


xg=0,yg=0,a1=0,b1=0,c=0;


t++;


int i,n;


if(N==0)


break;


for(i=0;i

{


scanf("%lf %lf",&x【i】,&y【i】);


}


for(i=0;i

{


a【i】=(y【i+1】+y【i】)(x【i】-x【i+1】)/2.0;


ax【i】=(x【i+1】x【i+1】+x【i+1】x【i】+x【i】x【i】)(y【i+1】-y【i】)/6.0;


ay【i】=(y【i+1】y【i+1】+y【i+1】y【i】+y【i】y【i】)(x【i】-x【i+1】)/6.0;


}


a【N-1】=(y【0】+y【N-1】)(x【N-1】-//代码效果参考:http://www.lyjsj.net.cn/wx/art_23102.html

x【0】)/2.0;

ax【N-1】=(x【0】x【0】+x【0】x【N-1】+x【N-1】x【N-1】)(y【0】-y【N-1】)/6.0;


ay【N-1】=(y【0】y【0】+y【0】y【N-1】+y【N-1】y【N-1】)(x【N-1】-x【0】)/6.0;


for(i=0;i

{


a1=a1+ax【i】;


b1=b1+a【i】;


c=c+ay【i】;


}


xg=a1/b1;


yg=c/b1;


printf("Stage #%d: %.6lf %.6lf\n",t,xg,yg);


}


return 0;


}

相关文章
|
5月前
|
设计模式 算法 搜索推荐
代码之舞:探索编程艺术与技术的融合
在数字化时代的浪潮中,编程已不仅仅是技术操作的堆砌,更是一种艺术的体现。本文将通过个人的技术感悟,探讨如何将创造性思维融入编程实践,以及这种融合如何影响软件开发的未来。从算法美学到设计模式的巧妙应用,我们将一同见证编码背后隐藏的艺术之美,并思考这一趋势对程序员职业发展的意义。
47 0
|
3月前
|
算法 网络协议 定位技术
代码之舞:编程艺术与实践的融合
编程,一种现代魔法,它以代码为咒语,召唤出数字世界的奇迹。在这篇文章中,我们将穿梭于编程的艺术与实践之间,探索如何通过技术提升效率、解决问题,并在此过程中寻找乐趣。从基础的数据结构到复杂的算法设计,每一次键盘敲击都是对未知的征服和对创造力的挑战。
35 1
|
5月前
|
机器学习/深度学习 算法 搜索推荐
代码之舞:探索编程艺术的深层美学
在数字世界的舞台上,编程不仅是技术的体现,更是艺术的一种展现。本文将深入探讨编程背后的艺术性,从算法的优雅到代码的简洁,揭示如何通过技术实现创造性思维的飞跃。我们将一起走进编程的世界,感受它在解决问题过程中所展现出的独特魅力和美学价值。
|
6月前
|
存储 机器学习/深度学习 算法
【海贼王的数据航海】探究二叉树的奥秘
【海贼王的数据航海】探究二叉树的奥秘
30 0
|
7月前
|
设计模式 算法 开发者
代码之美:探索编程艺术与实践的交汇点
【4月更文挑战第2天】 在数字世界的构建中,代码不仅仅是一种工具,它亦是艺术家手中的画笔。本文旨在探讨编程作为一种技术和艺术相结合的领域,揭示那些隐藏在代码背后的美学原则和创造力。我们将从编程的基础出发,逐步深入到设计模式、算法优雅性以及代码的可读性和维护性,最终探讨如何通过技术实现创新并解决问题。文章的目的是为那些渴望在技术实践中寻找创造性和美感的开发者提供灵感和指导。
|
算法 C++
走进“深度搜索基础训练“,踏入c++算法殿堂(二)
走进“深度搜索基础训练“,踏入c++算法殿堂(二)
78 0
|
机器学习/深度学习 算法 C++
走进“深度搜索基础训练“,踏入c++算法殿堂(五)
走进“深度搜索基础训练“,踏入c++算法殿堂(五)
86 0
|
算法 C++
走进“深度搜索基础训练“,踏入c++算法殿堂(一)
走进“深度搜索基础训练“,踏入c++算法殿堂(一)
68 0
|
机器学习/深度学习 数据采集 人工智能
强化学习打泡泡超人整体框架
强化学习打泡泡超人整体框架,泡泡超人是一款手机端炸弹超人游戏,本文设计了一款AI智能体操作手机触屏完成游戏的框架,涵盖了手机屏幕控制,智能体训练,电脑同步手机画面,电脑控制手机等功能点
84 0
|
7月前
|
算法 决策智能
深度探讨回溯算法:追寻解空间的奇妙之旅
深度探讨回溯算法:追寻解空间的奇妙之旅