# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
83504 | nikolapesic2802 | 새로운 문제 (POI13_usu) | C++14 | 270 ms | 39768 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
/*
- Find some c with k b's around add it to the answer and "delete" the c and b's.
*/
int main()
{
int n,k;
scanf("%i %i",&n,&k);
char s[n];
scanf("%s",s);
vector<vector<int> > sol;
vector<int> space;
space.pb(0);
int c=0;
vector<int> index;
for(int i=0;i<n;i++)
{
index.pb(i);
if(s[i]=='c')
{
c++;
space.pb(0);
}
else
{
space[c]++;
}
if(c&&space[c]+space[c-1]>=k)
{
vector<int> tr;
for(int i=0;i<k+1;i++)
{
tr.pb(index.back());
index.pop_back();
}
reverse(tr.begin(),tr.end());
sol.pb(tr);
int dif=space[c--];
space.pop_back();
space[c]-=k-dif;
}
}
reverse(sol.begin(),sol.end());
for(auto p:sol)
{
for(auto d:p)
{
printf("%i ",d+1);
}
printf("\n");
}
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... |