답안 #1089298

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1089298 2024-09-16T09:34:31 Z vjudge1 Growing Vegetable is Fun 3 (JOI19_ho_t3) C++17
0 / 100
466 ms 1048576 KB
//don't copy pls)
/*TAAK ZDES NADO RECURSIU PISAT*/

//I'm not in the danger i am the DANGER
#include "bits/stdc++.h"
#include <ext/pb_ds/assoc_container.hpp>
#define ll long long
#define pb push_back
#define int long long
#define F first
#define S second
#define all(x) (x).begin(), (x).end()
#define pii pair<int,int>
#define sigma signed
using namespace std;
using namespace __gnu_pbds;
const int N = 3e5 + 5;
int mod = 1e9 + 7;
const int INF = 1e18;
int n;
int cnt1 = 0 , cnt2 = 0 , cnt3 = 0;
string s,t;
vector <string> q;
void rec(char last , int sz){
	if(sz == n){
		q.pb(t);
		return;
	}
	int ans = 0;
	if(last != 'R'){
		t.pb('R');
		rec('R' , sz + 1);
		t.pop_back();
	}
	if(last != 'G'){
		t.pb('G');
		rec('G' , sz + 1);
		t.pop_back();
	}
	if(last != 'Y'){
		t.pb('Y');
		rec('Y' , sz + 1);
		t.pop_back();
	}
}
void Gold(){
	cin >> n >> s;
	s = '+' + s;
	int ans = 0 , ans1 = INF;
	for(auto it : s){
		if(it == 'R') cnt1++;
		else if(it == 'G') cnt2++;
		else cnt3++;
	}
	// if(cnt1 + cnt2 == n){
		// string t = s;
		// if(abs(cnt1 - cnt2) > 1){
			// cout << "-1\n";
			// return;
		// }
		// // cout << cnt1 << ' ' << cnt2 << '\n';
		// if(cnt1 >= cnt2){
			// for(int i = 1 ; i <= n ; i++){
				// if(i % 2){
					// for(int j = i ; j <= n ; j++){
						// if(s[j] == 'R'){
							// ans += (j - i);
							// swap(s[i] , s[j]);
							// // cout << i << ' ' << j << '\n';
							// break;
						// }
					// }
				// }
				// else{
					// for(int j = i ; j <= n ; j++){
						// if(s[j] == 'G'){
							// ans += (j - i);
							// swap(s[i] , s[j]);
							// break;
						// }
					// }
				// }
			// }
			// ans1 = ans;
		// }
		// if(cnt2 >= cnt1){
			// ans = 0;
			// s = t;
			// for(int i = 1 ; i <= n ; i++){
				// if(i % 2 == 0){
					// for(int j = i ; j <= n ; j++){
						// if(s[j] == 'R'){
							// ans += (j - i);
							// swap(s[i] , s[j]);
							// break;
						// }
					// }
				// }
				// else{
					// for(int j = i ; j <= n ; j++){
						// if(s[j] == 'G'){
							// ans += (j - i);
							// swap(s[i] , s[j]);
							// break;
						// }
					// }
				// }
			// } 	
		// }
		// cout << min(ans1 , ans);
		// return;
	// }
	// else{
		string qq = s;
		rec('A' , 0);
		ans = INF;
		for(auto it : q){
			s = qq;
			int ans1 = 0;
			t = '=' + it;
			// cout << t << '\n';
			for(int i = 1 ; i <= n ; i++){
				bool ok = 0;
				for(int j = i ; j <= n ; j++){
					if(t[i] == s[j]){
						ans1 += (j - i);
						swap(s[i] , s[j]);
						ok = 1;
						// cout << i << ' ' << j << ' ' << ans1 << '\n';
						break;
					}
				}
				if(!ok){
					ans1 = -1;
					break;
				}
			}
			if(ans1 == -1) continue;
			// cout << t << ' ' << ans1 << '\n';
			ans = min(ans , ans1);
		}
		if(ans == INF){
			cout << "-1\n";
			return;
		}
		cout << ans;
	// }
}
sigma main(){
	//freopen("txt.in","r",stdin);
	//freopen("txt.out","w",stdout);
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	srand(time(0));
	int TT = 1;
	// cin >> TT;
	for(int i = 1 ; i <= TT ; i++){
		//cout << "Case " << i << ": ";
		Gold();
	}
}

Compilation message

joi2019_ho_t3.cpp: In function 'void rec(char, long long int)':
joi2019_ho_t3.cpp:29:6: warning: unused variable 'ans' [-Wunused-variable]
   29 |  int ans = 0;
      |      ^~~
joi2019_ho_t3.cpp: In function 'void Gold()':
joi2019_ho_t3.cpp:49:16: warning: unused variable 'ans1' [-Wunused-variable]
   49 |  int ans = 0 , ans1 = INF;
      |                ^~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 6 ms 2484 KB Output is correct
6 Correct 6 ms 2520 KB Output is correct
7 Correct 6 ms 2520 KB Output is correct
8 Correct 6 ms 2520 KB Output is correct
9 Correct 6 ms 2520 KB Output is correct
10 Correct 5 ms 2520 KB Output is correct
11 Incorrect 5 ms 2520 KB Output isn't correct
12 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 6 ms 2484 KB Output is correct
6 Correct 6 ms 2520 KB Output is correct
7 Correct 6 ms 2520 KB Output is correct
8 Correct 6 ms 2520 KB Output is correct
9 Correct 6 ms 2520 KB Output is correct
10 Correct 5 ms 2520 KB Output is correct
11 Incorrect 5 ms 2520 KB Output isn't correct
12 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Runtime error 466 ms 1048576 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 6 ms 2484 KB Output is correct
6 Correct 6 ms 2520 KB Output is correct
7 Correct 6 ms 2520 KB Output is correct
8 Correct 6 ms 2520 KB Output is correct
9 Correct 6 ms 2520 KB Output is correct
10 Correct 5 ms 2520 KB Output is correct
11 Incorrect 5 ms 2520 KB Output isn't correct
12 Halted 0 ms 0 KB -