我是靠谱客的博主 沉默手链,最近开发中收集的这篇文章主要介绍CF1091B New Year and the Treasure Geolocation,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目只让我们求最后宝藏的位置,没让我们求怎么匹配,所以我们可以考虑不求出具体匹配方案

观察一下发现,最终的结果就是 ( s u m x / n , s u m y / n ) (sum_x/n,sumy/n) (sumx/n,sumy/n)

代码:

#include<bits/stdc++.h>
using namespace std;

#define read(x) scanf("%d",&x)
#define ll long long

int main() {
	int n;
	ll sum1=0,sum2=0;
	read(n);
	for(int i=1;i<=2*n;i++) {
		int x;
		read(x),sum1+=x;
		read(x),sum2+=x;
	}
	printf("%I64d %I64d",sum1/n,sum2/n);	
	return 0;
}

最后

以上就是沉默手链为你收集整理的CF1091B New Year and the Treasure Geolocation的全部内容,希望文章能够帮你解决CF1091B New Year and the Treasure Geolocation所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部