# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
569552 | esomer | Miners (IOI07_miners) | C++17 | 3 ms | 720 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (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... |