vijos P1067 守望者的烦恼

预处理然后矩阵加速递推

就是预处理的时候还可以以自己作为起点所以还有个自加所以在初始化矩阵的时候我们还需要+1,忽略这点就只有30了= =

#include
#include
#include
#include
#include
#include
#define LL long long 
#define fo(i,a,b) for(int i=a;i<=b;i++)
#define down(i,a,b) for(int i=a;i>=b;i--)
using namespace std;
inline LL read()
{
	LL d=0,f=1;char s=getchar();
	while(s<'0'||s>'9'){if(s=='-')f=-1;s=getchar();}
	while(s>='0'&&s<='9'){d=d*10+s-'0';s=getchar();}
	return d*f;
}
#define N 10
#define inf 7777777
int n,m;

struct matrix
{
	LL a[N][N];
	void clear()
	{
		memset(a,0,sizeof(a));
	}
	void check()
	{
		fo(i,0,m-1)
		{
			fo(j,0,m-1)
			{
				cout<=m)break;
		else anss+=ans.a[j][0];
		ans.a[i][0]=anss;
	}
	if(n<=m)
	{
		cout<


你可能感兴趣的:(数论)