摘要:
题目大意:在矩形中找到一个点,使其跟最近的点距离最大算法:模拟退火模拟退火博大精深。。。#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 ) < 阅读全文