UVA 11401:Triangle Counting

简单规律题

#include
using namespace std;

typedef long long ll;
const int maxn=1000000+100;

ll f[maxn];

void slove(){
	
	f[3]=0;
	for(int i=4;i

你可能感兴趣的:(ACM)