Submission #1846220


Source Code Expand

#include"bits/stdc++.h"


#define PB push_back
#define PF push_front
#define LB lower_bound
#define UB upper_bound
#define fr(x) freopen(x,"r",stdin)
#define fw(x) freopen(x,"w",stdout)
#define iout(x) printf("%d\n",x)
#define lout(x) printf("%lld\n",x)
#define REP(x,l,u) for(int x = (l);x<=(u);x++)
#define RREP(x,l,u) for(int x = (l);x>=(u);x--)
#define mst(x,a) memset(x,a,sizeof(x))
#define PII pair<int,int>
#define PLL pair<ll,ll>
#define MP make_pair
#define se second
#define fi first
#define dbg(x) cout<<#x<<" = "<<(x)<<endl;
#define sz(x) ((int)x.size())
#define cl(x) x.clear()

typedef  long long ll;
typedef unsigned long long ull;
typedef double db;
typedef long double ld;
using namespace std;

const int maxn = 1010;
const int mod = 1e9+7;
const int MAX = 1000000010;
const double eps = 1e-6;
const double PI = acos(-1);

template<typename T> inline void read(T &x){
x=0;T f=1;char ch;do{ch=getchar();if(ch=='-')f=-1;}while(ch<'0'||ch>'9');do x=x*10+ch-'0',ch=getchar();while(ch<='9'&&ch>='0');x*=f;
}

template<typename A,typename B> inline void read(A&x,B&y){read(x);read(y);}
template<typename A,typename B,typename C> inline void read(A&x,B&y,C&z){read(x);read(y);read(z);}
template<typename A,typename B,typename C,typename D> inline void read(A&x,B&y,C&z,D&w){read(x);read(y);read(z);read(w);}
template<typename A,typename B> inline A fexp(A x,B p){A ans=1;for(;p;p>>=1,x=1LL*x*x%mod)if(p&1)ans=1LL*ans*x%mod;return ans;}
template<typename A,typename B> inline A fexp(A x,B p,A mo){A ans=1;for(;p;p>>=1,x=1LL*x*x%mo)if(p&1)ans=1LL*ans*x%mo;return ans;}

int n,m;

ll K;

char st[maxn][maxn];

int A[maxn][maxn];

struct Mat{
	int a[3][3];
}Ans,M;

Mat mul(Mat a,Mat b){
	Mat c;memset(c.a,0,sizeof(c.a));
	REP(i,1,2)REP(j,1,2)REP(k,1,2)c.a[i][j]=(1ll*a.a[i][k]*b.a[k][j]+c.a[i][j])%mod;
	return c;
}

int solve(int r,int c,int t){
	int V=fexp(t,K-1);
	int E=0;
	if(r)REP(i,1,n)REP(j,1,m-1)E+=A[i][j]&A[i][j+1];
	else REP(i,1,n-1)REP(j,1,m)E+=A[i][j]&A[i+1][j];
	Ans.a[1][1]=Ans.a[2][2]=1;
	M.a[1][1]=r+c;M.a[2][1]=E;M.a[2][2]=t;
	K-=2;
	for(;K;K>>=1,M=mul(M,M))if(K&1)Ans=mul(Ans,M);
	E=(1ll*E*Ans.a[1][1]+1ll*t*Ans.a[2][1])%mod;
	return (V-E+mod)%mod;
}

void Work(){
	if(K==1){puts("1");return;}
	int r=0,c=0;
	REP(i,1,n)r+=A[i][1]&&A[i][m];
	REP(i,1,m)c+=A[1][i]&&A[n][i];
	if(r&&c){puts("1");return;}
	int t=0;
	REP(i,1,n)REP(j,1,m)t+=A[i][j];
	if(!r&&!c){printf("%d\n",fexp(t,K-1));return;}
	printf("%d\n",solve(r,c,t));
}

void Init(){
	read(n,m,K);
	REP(i,1,n)scanf("%s",st[i]+1);
	REP(i,1,n)REP(j,1,m)A[i][j]=st[i][j]=='#';
}

int main(){
	Init();
	Work();
	return 0;
}

Submission Info

Submission Time
Task F - Fraction of Fractal
User yanQval
Language C++14 (GCC 5.4.1)
Score 1700
Code Size 2700 Byte
Status AC
Exec Time 8 ms
Memory 5248 KB

Compile Error

./Main.cpp: In function ‘void Init()’:
./Main.cpp:91:31: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  REP(i,1,n)scanf("%s",st[i]+1);
                               ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1700 / 1700
Status
AC × 3
AC × 47
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, 43.txt, 44.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 6 ms 5248 KB
02.txt AC 7 ms 5248 KB
03.txt AC 7 ms 5248 KB
04.txt AC 7 ms 5248 KB
05.txt AC 7 ms 5248 KB
06.txt AC 7 ms 5248 KB
07.txt AC 7 ms 5248 KB
08.txt AC 6 ms 5248 KB
09.txt AC 8 ms 5248 KB
10.txt AC 8 ms 5248 KB
11.txt AC 6 ms 5248 KB
12.txt AC 7 ms 5248 KB
13.txt AC 8 ms 5248 KB
14.txt AC 7 ms 5248 KB
15.txt AC 7 ms 5248 KB
16.txt AC 7 ms 5248 KB
17.txt AC 7 ms 5248 KB
18.txt AC 7 ms 5248 KB
19.txt AC 7 ms 5248 KB
20.txt AC 8 ms 5248 KB
21.txt AC 7 ms 5248 KB
22.txt AC 7 ms 5248 KB
23.txt AC 7 ms 5248 KB
24.txt AC 7 ms 5248 KB
25.txt AC 8 ms 5248 KB
26.txt AC 8 ms 5248 KB
27.txt AC 8 ms 5248 KB
28.txt AC 7 ms 5248 KB
29.txt AC 2 ms 2304 KB
30.txt AC 2 ms 2304 KB
31.txt AC 2 ms 2304 KB
32.txt AC 2 ms 2304 KB
33.txt AC 2 ms 2304 KB
34.txt AC 2 ms 2304 KB
35.txt AC 2 ms 2304 KB
36.txt AC 2 ms 2304 KB
37.txt AC 2 ms 2304 KB
38.txt AC 2 ms 2304 KB
39.txt AC 2 ms 2304 KB
40.txt AC 2 ms 2304 KB
41.txt AC 2 ms 2304 KB
42.txt AC 2 ms 2304 KB
43.txt AC 2 ms 2304 KB
44.txt AC 2 ms 2304 KB
s1.txt AC 2 ms 2304 KB
s2.txt AC 2 ms 2304 KB
s3.txt AC 2 ms 2304 KB