# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
569552 | esomer | Miners (IOI07_miners) | C++17 | 3 ms | 720 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define endl "\n"
const int MOD = 1e9 + 7;
void solve(){
int n; cin >> n;
string s; cin >> s;
string s1;
s1 += s[0];
string s2;
for(int i = 1; i < n; i++){
bool eq = 1;
for(int j = i - 1; j >= i - 2 && j >= 0; j--){
if(s[i] != s[j]) eq = 0;
}
if(eq) s2 += s[i];
else s1 += s[i];
}
int ans = 0;
for(int i = 0; i < s1.size(); i++){
bool one = 0;
bool two = 0;
bool three = 0;
for(int j = i; j >= 0 && j >= i - 2; j--){
if(s1[j] == 'F'){
if(!one){
ans++;
one = 1;
}
}else if(s1[j] == 'M'){
if(!two){
ans++;
two = 1;
}
}else if(!three){
ans++;
three = 1;
}
}
}
for(int i = 0; i < s2.size(); i++){
bool one = 0;
bool two = 0;
bool three = 0;
for(int j = i; j >= 0 && j >= i - 2; j--){
if(s2[j] == 'F'){
if(!one){
ans++;
one = 1;
}
}else if(s2[j] == 'M'){
if(!two){
ans++;
two = 1;
}
}else if(!three){
ans++;
three = 1;
}
}
}
cout << ans << endl;
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
//int tt; cin >> tt;
int tt = 1;
for(int i = 1; i <= tt; i++) solve();
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |