답안 #274257

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
274257 2020-08-19T10:36:34 Z AKaan37 Fishing Game (RMI19_fishing) C++17
0 / 100
2000 ms 47864 KB
//Bismillahirrahmanirrahim
//█▀█─█──█──█▀█─█─█
//█▄█─█──█──█▄█─█▄█
//█─█─█▄─█▄─█─█─█─█

#include <bits/stdc++.h>

using namespace std;

typedef long long int lo;

//~ #define int long long
#define fi first
#define se second
#define mp make_pair
#define endl "\n"
#define pb push_back
#define fio() ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define FOR for(int i=1;i<=n*2;i++)
#define mid ((start+end)/2)
#define ort ((bas+son)/2)

const lo inf = 1000000000000000000;
const lo KOK = 100000;
const lo LOG = 30;
const int li = 201;
const lo mod = 1000000007;

int n,m,b[li],a[li],k,flagt,t,dp[li][li][li][3][2];
int cev;
//~ map<PIIIII,int> dp;


inline int add(int x,int y){
	if(x+y>=mod)return x+y-mod;
	return x+y;
}

inline int f(int x,int y,int z,int kim,bool last){
	int cevv=0;
	//~ if(x==0 && z==0 && kim==1)return 1;
	//~ if(y==0 && x==0 && kim==2)return 1;
	//~ if(z==0 && y==0 && kim==3)return 1;
	//~ if(z==0 && last==0 && kim==3)return 1;
	if(x==0 && y==0 && z==0)return 1;
	if(~dp[x][y][z][kim][last])return dp[x][y][z][kim][last];
	//~ cout<<x<<" : : "<<y<<" : ;"<<z<<endl;
	if(kim==0){
		if(x==0 && z==0)cevv=add(cevv,f(x,y,z,1,0));
		for(int i=1;i<=x;i++)cevv=add(cevv,f(x-1,y,z,1,1));
		for(int i=1;i<=z;i++)cevv=add(cevv,f(x,y+1,z-1,1,0));
	}
	if(kim==1){
		if(y==0 && x==0)cevv=add(cevv,f(x,y,z,2,last));
		for(int i=1;i<=y;i++)cevv=add(cevv,f(x,y-1,z,2,1));
		for(int i=1;i<=x;i++)cevv=add(cevv,f(x-1,y,z+1,2,last));
	}
	if(kim==2){
		//~ if(last && y==0)cevv=add(cevv,f(x,y,z,1,0));
		for(int i=1;i<=z;i++)cevv=add(cevv,f(x,y,z-1,0,0));
		if(last)for(int i=1;i<=y;i++)cevv=add(cevv,f(x+1,y-1,z,0,0));
	}
	return dp[x][y][z][kim][last]=cevv;
}

main(void){
	scanf("%d %d",&n,&t);
	while(t--){
		//~ dp.clear();
		FOR{
			scanf("%d",&a[i]);
		}
		FOR{
			scanf("%d",&b[i]);
		}
		int aveb=0,avec=0,bvec=0;
		FOR{
			int oku;
			scanf("%d",&oku);
			for(int j=1;j<=n*2;j++){
				if(oku==a[j])avec++;
				if(oku==b[j])bvec++;
			}
		}
		
		FOR{
			for(int j=1;j<=n*2;j++){
				if(a[i]==b[j])aveb++;
			}
		}
		for(int i=0;i<=aveb;i++){
			for(int j=0;j<=bvec;j++){
				for(int jj=0;jj<=avec;jj++){
					for(int kk=0;kk<=2;kk++){
						dp[i][j][jj][kk][0]=-1;
						dp[i][j][jj][kk][1]=-1;
					}
				}
			}
		}
		//~ aveb=2;
		//~ avec=2;
		//~ bvec=2;
		//~ cout<<aveb<<" :: "<<bvec<<" :: "<<avec<<endl;
		printf("%d\n",f(aveb,bvec,avec,0,0));
	}
	return 0;
}

Compilation message

fishing.cpp:66:10: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   66 | main(void){
      |          ^
fishing.cpp: In function 'int main()':
fishing.cpp:67:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   67 |  scanf("%d %d",&n,&t);
      |  ~~~~~^~~~~~~~~~~~~~~
fishing.cpp:71:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   71 |    scanf("%d",&a[i]);
      |    ~~~~~^~~~~~~~~~~~
fishing.cpp:74:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   74 |    scanf("%d",&b[i]);
      |    ~~~~~^~~~~~~~~~~~
fishing.cpp:79:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   79 |    scanf("%d",&oku);
      |    ~~~~~^~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Incorrect 1 ms 384 KB Output isn't correct
3 Incorrect 1 ms 896 KB Output isn't correct
4 Incorrect 5 ms 2304 KB Output isn't correct
5 Incorrect 180 ms 12664 KB Output isn't correct
6 Incorrect 386 ms 18040 KB Output isn't correct
7 Incorrect 747 ms 24440 KB Output isn't correct
8 Incorrect 1149 ms 31880 KB Output isn't correct
9 Incorrect 1741 ms 39928 KB Output isn't correct
10 Execution timed out 2069 ms 47864 KB Time limit exceeded