13 lines
230 B
C++
13 lines
230 B
C++
#include <iostream>
|
|
#include <string>
|
|
#include <math.h>
|
|
#include <stdlib.h>
|
|
#include <sys/timeb.h>
|
|
using namespace std;
|
|
|
|
typedef unsigned long long int uu; // 简化大整数定义
|
|
|
|
#define _eps 0.00001 // 设置最小值表示
|
|
|
|
|