摘要: 题目大意:在矩形中找到一个点,使其跟最近的点距离最大算法:模拟退火模拟退火博大精深。。。#include <cstdio>#include <cstring>#include <cstdlib>#include <cmath>#include <ctime>#include <iostream>#include <algorithm>#define max( x , y ) ( ( x ) > ( y ) ? ( x ) : ( y ) )#define min( x , y ) ( ( x ) < 阅读全文
posted @ 2013-04-21 14:22 SYFT 阅读(247) 评论(0) 推荐(0) 编辑