답안 #513194

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
513194 2022-01-17T03:57:04 Z PoPularPlusPlus Take-out (POI13_usu) C++17
22 / 100
208 ms 64628 KB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ull unsigned long long 
#define pb(e) push_back(e)
#define sv(a) sort(a.begin(),a.end())
#define sa(a,n) sort(a,a+n)
#define mp(a,b) make_pair(a,b)
#define vf first
#define vs second
#define ar array
#define all(x) x.begin(),x.end()
const int inf = 0x3f3f3f3f;
const ll mod = 1000000007; 
const double PI=3.14159265358979323846264338327950288419716939937510582097494459230;
bool remender(ll a , ll b){return a%b;}
 
void solve(){
	int n , k;
	cin >> n >> k;
	char arr[n];
	for(int i = 0; i < n; i++){
		cin >> arr[i];
	}
	vector<vector<int>> v;
	vector<int> cur[n/(k+1)];
	stack<int> a , b;
	for(int i = 0; i < n; i++){
		if(arr[i] == 'c'){
			if(b.size() == 0 || b.top() != 0){
				b.push(1);
				a.push(0);
				cur[b.size()-1].pb(i + 1);
			}
			else {
				b.pop();
				b.push(1);
				cur[b.size()-1].pb(i + 1);
				if(a.top() == k){
					v.pb(cur[b.size()-1]);
					cur[b.size()-1].clear();
					a.pop();
					b.pop();
				}
			}
		}
		else {
			if(a.size() == 0 || a.top() == k){
				a.push(1);
				b.push(0);
				cur[b.size()-1].pb(i + 1);
			}
			else {
				int x = a.top();
				a.pop();
				a.push(x + 1);
				cur[b.size()-1].pb(i + 1);
				if(b.top() == 1 && a.top() == k){
					v.pb(cur[b.size()-1]);
					cur[b.size()-1].clear();
					a.pop();
					b.pop();
				}
			}
		}
	}
	reverse(all(v));
	if(v.size()!= n/(k+1)){
		cout << "here" << endl;
	}
	for(auto i : v){
		for(int j : i)cout << j << ' ';
		cout << '\n';
	}
}
 
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
//freopen("rblock.in", "r", stdin);
//freopen("rblock.out", "w", stdout);
	//int t;cin >> t;while(t--)
	solve();
	return 0;
}

Compilation message

usu.cpp: In function 'void solve()':
usu.cpp:68:13: warning: comparison of integer expressions of different signedness: 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   68 |  if(v.size()!= n/(k+1)){
      |     ~~~~~~~~^~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 204 KB Output is correct
2 Runtime error 1 ms 332 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 304 KB Output is correct
2 Incorrect 0 ms 316 KB Expected integer, but "here" found
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 332 KB Output is correct
2 Incorrect 1 ms 332 KB Expected integer, but "here" found
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 440 KB Output is correct
2 Incorrect 1 ms 324 KB Expected integer, but "here" found
# 결과 실행 시간 메모리 Grader output
1 Correct 17 ms 3360 KB Output is correct
2 Correct 11 ms 1804 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 29 ms 5136 KB Output is correct
2 Correct 30 ms 4876 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 14 ms 4984 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 60 ms 8920 KB Expected integer, but "here" found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 208 ms 64628 KB Output is correct
2 Correct 108 ms 20960 KB Output is correct
3 Correct 105 ms 15228 KB Output is correct
4 Incorrect 80 ms 12868 KB Expected integer, but "here" found