# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
381206 | patrikpavic2 | Toilets (JOI16_toilets) | C++17 | 27 ms | 1900 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long ll;
const int N = 2e5 + 500;
ll n, P, S, cF;
int m, k;
char s[N];
int main(){
scanf("%lld%d", &n, &m);
for(;m--;){
ll PP = 0, SS = 0, cFF = 0, kol;
scanf("%s %lld", s, &kol); k = strlen(s);
for(int i = 0;i < k;i++){
SS += (s[i] == 'F' ? -1 : 1);
cFF += (s[i] == 'F');
PP = min(PP, SS);
}
cF += cFF * kol;
P = min(PP, S + PP + max(0LL, (kol - 1) * SS));
S += SS * kol;
}
if(cF < n)
printf("-1\n");
else
printf("%lld\n", max(0LL, (2LL * n - 2LL * cF - 1) - P));
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... |