답안 #633643

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
633643 2022-08-23T00:04:03 Z Cyber_Wolf Miners (IOI07_miners) C++14
76 / 100
695 ms 524288 KB
//Contest: IOI'07 D2 P1
//Problem: Miners
//Link: https://oj.uz/problem/view/IOI07_miners

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#pragma GCC optimize("Ofast")

using namespace std;
using namespace __gnu_pbds;

#define lg long long
#define ordered_set	tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update>
#define fastio ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define error(args...) { string _s = #args; replace(_s.begin(), _s.end(), ',', ' '); stringstream _ss(_s); istream_iterator<string> _it(_ss); err(_it, args);
#define endl \n
#define lbound(x, y) lower_bound(x.begin(), x.end(), y) 
#define ubound(x, y) upper_bound(x.begin(), x.end(), y) 
#define sortasc(v) sort(v.begin(), v.end())	
#define sortdesc(v) sort(v.rbegin(), v.rend())	
#define custom_array(a,l, r) int _##a[r-l+1]; int*a=_##a-l;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

const lg MOD = 1e9+7, N = 5e4+5, M = 1e7+1, SZ = 1e3+1;
/*
bitset<N> primes;
lg pwrs[N], inv[N];

lg fast_power(lg n, lg k)
{
	if(!k)	return 1;
	if(k&1)	return (fast_power(n, k-1)*n)%MOD;
	lg x = fast_power(n, k/2)%MOD;
	return (x*x)%MOD;
}

void sieve()
{
	primes.set();
	primes[0] = primes[1] = 0;
	for(lg i = 2; i < N; i++)
	{
		if(!primes[i])	continue;
		for(lg j = i*i; j < N; j += i)
		{
			primes[j] = 0;
		}
	}
	return;
}

struct matrix
{
	vector<vector<lg>> con = vector<vector<lg>> (SZ, vector<lg> (SZ));
	matrix operator *(const matrix& a)
	{
		matrix product;
		for(int i = 0; i < (lg)con.size(); i++)
		{
			for(int j = 0; j < (lg)a.con[0].size(); j++)
			{
				for(int k = 0; k < (lg)a.con.size(); k++)
				{
					product.con[i][j] = (product.con[i][j]+(con[i][k]*a.con[k][j])%MOD)%MOD; 
				}
			}
		}
		return product;
	}
};

void preprocess(lg x)
{
	inv[2e5] = fast_power(x, MOD-2);
	for(int i = 2e5-1; i > 1; i--)
	{
		inv[i] = (inv[i+1]*i)%MOD;
	}
	pwrs[0] = 1;
	for(int i = 1; i <= 2e5; i++)
	{
		pwrs[i] = (pwrs[i]*i)%MOD;
	}
	return;
}

*/
lg dp[N][4][4][4][4][4][4];
lg n;
string s;
vector<lg> v(N);

lg solve(lg idx, lg x, lg y, lg z, lg a, lg b, lg c)
{
	if(idx == n)
	{
		return 0;
	}
	auto &ret = dp[idx][x][y][z][a][b][c];
	if(~ret)	return ret;
	set<lg> se1;
	if(v[idx] != 3)	se1.insert(v[idx]);
	if(x != 3)	se1.insert(x);
	if(y != 3)	se1.insert(y);
	set<lg> se2;
	if(v[idx] != 3)	se2.insert(v[idx]);
	if(a != 3)	se2.insert(a);
	if(b != 3)	se2.insert(b);
	lg ch1 = solve(idx+1, v[idx], x, y, a, b, c)+se1.size();
	lg ch2 = solve(idx+1, x, y, z, v[idx], a, b)+se2.size();
	return ret = max(ch1, ch2);
}

int main()
{
	fastio;
	cin >> n >> s;
	for(int i = 0; i < n; i++)
	{
		if(s[i] == 'M')	v[i] = 1;
		if(s[i] == 'B')	v[i] = 2;
		for(int j = 0; j < 4; j++)
		{
			for(int k = 0; k < 4; k++)
			{
				for(int z = 0; z < 4; z++)
				{
					for(int g = 0; g < 4; g++)
					{
						for(int h = 0; h < 4; h++)
						{
							for(int u = 0; u < 4; u++)
							{
								dp[i][j][k][z][g][h][u] = -1;
							}
						}
					}
				}
			}
		}
	}
	cout << solve(0, 3, 3, 3, 3, 3, 3) << '\n';
	
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 980 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1108 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1236 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1236 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1364 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1492 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 50 ms 33184 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 130 ms 163076 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 695 ms 326232 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 203 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 221 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 242 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -