当前位置: 代码迷 >> 综合 >> CF1091B New Year and the Treasure Geolocation
  详细解决方案

CF1091B New Year and the Treasure Geolocation

热度:12   发布时间:2023-12-06 07:40:27.0

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

观察一下发现,最终的结果就是 ( 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 longint 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;
}
  相关解决方案