답안 #1003778

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1003778 2024-06-20T17:33:23 Z vjudge1 Ekoeko (COCI21_ekoeko) C++17
0 / 110
2 ms 1884 KB
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
const int maxn = 2e5+5;

int bit[maxn];

void upd(int x){
	for(; x<maxn; x+=x&-x) bit[x]++;
}

int query(int x){
	int rt=0;
	for(; x>0; x-=x&-x) rt+=bit[x];
	return rt;
}

signed main(){
	int n; cin >> n;
	string s; cin >> s;
	map<char,int> mp, cnt;
	for(char c : s) cnt[c]++;

	int cnt1=0, cnt2=0;
	vector<int> arr1, arr2;
	vector<int> trans(2*n);
	for(int i=0; i<2*n; i++){
		if(mp[s[i]]<cnt[s[i]]/2) mp[s[i]]++, cnt1++, trans[i]=cnt1;
		else cnt2++, trans[i] = n+cnt2;
	}

	// for(int x : trans) cout << x << " ";
	// cout << endl;

	int ans=0;
	for(int i=0; i<2*n; i++){
		ans += i-query(trans[i-1]);
		upd(trans[i]);
	}
	cout << ans << '\n';
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 604 KB Output is correct
2 Runtime error 2 ms 1884 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 604 KB Output is correct
2 Runtime error 2 ms 1884 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 604 KB Output is correct
2 Runtime error 2 ms 1884 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Incorrect 1 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 604 KB Output is correct
2 Runtime error 2 ms 1884 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -