답안 #70025

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
70025 2018-08-22T09:24:37 Z khohko popa (BOI18_popa) C++17
37 / 100
1000 ms 5104 KB
#include <bits/stdc++.h>
#ifndef KHOKHO
#include "popa.h"
#endif // KHOKHO
#pragma GCC optimize("O3")
using namespace std;
#define ll int
#define pb push_back
#define fr first
#define sc second
#define MAX ((ll)(1e12+100))
#define MX ((ll)(1e6+100))
#define ARRS ((ll)(2e6+100))
#define HS ((ll)(233))
#define MOD ((ll)(1e9+7))
#define EP ((double)(1e-9))
#define LG 21
#define mul(a,b) a=((a)*(b))%MOD
using namespace std;

#ifdef KHOKHO
	ll aa[ARRS];
	ll qr=0;
	int query(int a, int b, int c, int d){
		ll x=0,y=0;
		qr++;
		for(int i=a; i<=b; i++)x=__gcd(x,aa[i]);
		for(int i=c; i<=d; i++)y=__gcd(y,aa[i]);
		return x==y;
	}
#endif
ll l[ARRS];
ll r[ARRS];

ll dp[1100][1100];


ll bld(ll l,ll r,int *lt,int *rt){
	ll x=dp[l][r]-1;
	if(x==-2)return -1;
	if(x==-1)return -1;
	//cout<<l<<" "<<r<<" "<<x<<endl;
	lt[x]=bld(l,x,lt,rt);
	rt[x]=bld(x+1,r,lt,rt);
	return x;
}


ll slv(ll i,ll j){
	if(i==j)dp[i][j]=-1;
	if(dp[i][j])return dp[i][j];
	for(int k=i; k<j; k++){
		if(slv(i,k)&&slv(k+1,j)&&l[k]<=i&&j-1<=r[k]){
			return dp[i][j]=k+1;
		}
	}
}

int solve(int n, int* lt, int* rt){
	for(int i=0; i<n; i++){
		l[i]=i;
		while(l[i]&&query(l[l[i]-1],i,i,i))
			l[i]=l[l[i]-1];
	}

	for(int i=n-1; i>=0; i--){
		r[i]=i;
		while(r[i]<n-1&&query(i,r[r[i]+1],i,i))
			r[i]=r[r[i]+1];
	}
//
	for(int d=0; d<=n; d++){
		for(int i=0; i<=n-d; i++){
			ll j=i+d;
			if(i==j){dp[i][j]=-1;continue;}
			for(int k=i; k<j; k++){
				if(dp[i][k]&&dp[k+1][j]&&l[k]<=i&&j-1<=r[k])
					{dp[i][j]=k+1;break;}
			}
		}
	}
	//slv(0,n);

	return bld(0,n,lt,rt);
}

#ifdef KHOKHO
int pa[ARRS];
int pb[ARRS];

int main(){
	#ifdef KHOKHO
		freopen("in.in","r",stdin);
		freopen("out.out","w",stdout);
	#endif // KHOKHO
	//ios::sync_with_stdio(0);

	ll n;
	cin>>n;
	for(int i=0; i<n; i++){
		cin>>aa[i];
	}
	ll rt=solve(n,pa,pb);
	cout<<rt<<endl;
	for(int i=0; i<n; i++){
		cout<<pa[i]<<" ";
	}
	cout<<endl;
	for(int i=0; i<n; i++){
		cout<<pb[i]<<" ";
	}
	cout<<endl;
	cout<<endl;
	cout<<"asked:"<<qr<<endl;

}
#endif

Compilation message

popa.cpp: In function 'int slv(int, int)':
popa.cpp:57:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
# 결과 실행 시간 메모리 Grader output
1 Correct 30 ms 628 KB Output is correct
2 Correct 32 ms 820 KB Output is correct
3 Correct 38 ms 900 KB Output is correct
4 Correct 31 ms 976 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1041 ms 5104 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 5104 KB too many queries
2 Halted 0 ms 0 KB -