首页 > Codeforces 460E Roland and Rose(暴力)

Codeforces 460E Roland and Rose(暴力)

题目链接:Codeforces 460E Roland and Rose

题目大意:在以原点为圆心,半径为R的局域内选择N个整数点,使得N个点中两两距离的平方和最大。

解题思路:R最大为30。那么事实上距离圆心距离最大的整数点只是12个最多,直接暴力枚举。

#include 
#include 
#include 
#include using namespace std;struct point {int x, y;point (int x = 0, int y = 0) {this->x = x;this->y = y;}
};int N, R, M, ans, pos[10], rec[10];
vector vec;inline int dis (int x, int y) {return x * x + y * y;
}inline bool cmp (const point& a, const point& b) {return dis(a.x, a.y) > dis(b.x, b.y);
}void init () {scanf("%d%d", &N, &R);for (int i = -R; i <= R; i++) {for (int j = -R; j <= R; j++)  {if (i * i + j * j <= R * R)vec.push_back(point(i, j));}}ans = 0;M = min((int)vec.size(), 18);sort(vec.begin(), vec.end(), cmp);
}void dfs (int d, int f, int s) {if (d == N) {if (s > ans) {ans = s;memcpy(rec, pos, sizeof(pos));}return;}for (int i = f; i < M; i++) {int add = 0;for (int j = 0; j < d; j++)add += dis(vec[pos[j]].x - vec[i].x, vec[pos[j]].y - vec[i].y);pos[d] = i;dfs(d + 1, i, s + add);}
}int main () {init();dfs(0, 0, 0);printf("%d
", ans);for (int i = 0; i < N; i++)printf("%d %d
", vec[rec[i]].x, vec[rec[i]].y);return 0;
}

转载于:https://www.cnblogs.com/wzjhoutai/p/6761329.html

更多相关:

  •         Apache POI是一个开源的利用Java读写Excel,WORD等微软OLE2组件文档的项目。        我的需求是对Excel的数据进行导入或将数据以Excel的形式导出。先上简单的测试代码:package com.xing.studyTest.poi;import java.io.FileInputSt...

  • 要取得[a,b)的随机整数,使用(rand() % (b-a))+ a; 要取得[a,b]的随机整数,使用(rand() % (b-a+1))+ a; 要取得(a,b]的随机整数,使用(rand() % (b-a))+ a + 1; 通用公式:a + rand() % n;其中的a是起始值,n是整数的范围。 要取得a到b之间的...

  • 利用本征图像分解(Intrinsic Image Decomposition)算法,将图像分解为shading(illumination) image 和 reflectance(albedo) image,计算图像的reflectance image。 Reflectance Image 是指在变化的光照条件下能够维持不变的图像部分...

  • 题目:面试题39. 数组中出现次数超过一半的数字 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。 你可以假设数组是非空的,并且给定的数组总是存在多数元素。 示例 1: 输入: [1, 2, 3, 2, 2, 2, 5, 4, 2] 输出: 2 限制: 1 <= 数组长度 <= 50000 解题: cl...

  • 题目:二叉搜索树的后序遍历序列 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历结果。如果是则返回 true,否则返回 false。假设输入的数组的任意两个数字都互不相同。 参考以下这颗二叉搜索树:      5     /    2   6   /  1   3示例 1: 输入: [1,6,3,2,5] 输出...

  • 题目:https://www.lydsy.com/JudgeOnline/problem.php?id=3598 数位DP...东看西看:http://www.cnblogs.com/Artanis/p/3751644.html             https://www.cnblogs.com/MashiroSky/p/6399...