답안 #211969

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
211969 2020-03-21T20:56:05 Z tleontest1 Geppetto (COCI15_geppetto) C++14
0 / 80
43 ms 65540 KB
#pragma GCC optimize ("O3")
#pragma GCC target ("sse4")

#include <bits/stdc++.h>

using namespace std;

typedef long long lo;
typedef pair< lo,lo > PII;

#define fi first
#define se second
#define mp make_pair
#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;i++)
#define mid ((start+end)/2)
#define ort ((bas+son)/2)

const lo MAX = -1000000000000000000;
const lo MIN = 1000000000000000000;
const lo inf = 1000000000;
const lo KOK = 100000;
const lo LOG = 30;
const lo li = 500005;
const lo mod = 1000000007;

int n,m,b[li],a[li],k,flag,t,dp[22][(1<<21)+1];
int cev;
string s;
vector<int> v[li];

inline int f(int sira,int mask){
	int cevv=0;
	int no=0;
	if(sira>=n){
		//~ cout<<mask<<endl;
		return 1;
	}
	if(~dp[sira][mask])return dp[sira][mask];
	for(int i=0;i<(int)v[sira].size();i++){
		//~ cout<<v[sira][i]<<" : : "<<sira<<endl;
		if((mask&(1<<v[sira][i]))){no=1;break;}
	}
	if(no==0){
		cevv+=f(sira+1,(mask|(1<<sira)));
	}
	cevv+=f(sira+1,mask);
	return dp[sira][mask]=cevv;
}

int main(void){
	memset(dp,-1,sizeof(dp));
	scanf("%d %d",&n,&m);
	for(int i=1;i<=m;i++){
		int x,y;
		scanf("%d %d",&x,&y);
		x--;
		y--;
		v[x].pb(y);
		v[y].pb(x);
	}
	printf("%d\n",f(0,0));
	return 0;
}

Compilation message

geppetto.cpp: In function 'int main()':
geppetto.cpp:55:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d",&n,&m);
  ~~~~~^~~~~~~~~~~~~~~
geppetto.cpp:58:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d",&x,&y);
   ~~~~~^~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Runtime error 42 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 38 ms 65536 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 42 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 38 ms 65536 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 43 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 40 ms 65536 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 43 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 41 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 41 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 42 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)