Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

贴个代妈,0ms

Posted by KatrineYang at 2016-06-17 00:30:39 on Problem 1068
//============================================================================
// Name        : main1068.cpp
// Author      : 
// Version     :
// Copyright   : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================

#include <iostream>
#include <stack>
using namespace std;

int main() {
	int cases;
	cin >> cases;
	for(int ii = 0; ii < cases; ii++){
		int num;
		cin >> num;
		int kuohao[400];
		int al = 0;
		int cnt = 0;
		for(int i = 0; i < num; i++){
			int temp;
			cin >> temp;
			for(int j = al; j < temp; j++){
				kuohao[cnt] = 0;
				cnt++;
			}
			kuohao[cnt] = 1;
			cnt++;
			al = temp;
		}
		int khNo[400], youNo[400], idx[400];
		cnt = -1;
		stack<int> No;
		for(int i = 2 * num - 1; i >= 0; i--){
			if(kuohao[i]){
				//1表示右括號,0表示左括號
				cnt++;
				youNo[i] = cnt;
				khNo[i] = cnt;
				No.push(cnt);
				//cnt++;
			}
			else{
				khNo[i] = No.top();
				idx[khNo[i]] = i;
				No.pop();
				youNo[i] = cnt;
			}
		}
		//for(int i = 0; i < 2 * num; i++) cout << khNo[i] << " "; cout << endl;
		//for(int i = 0; i < 2 * num; i++) cout << youNo[i] << " "; cout << endl;
		//for(int i = 0; i < num; i++) cout << idx[i] << " "; cout << endl;
		for(int i = num-1; i >= 0; i--){
			cout << youNo[idx[i]] - khNo[idx[i]] + 1 << " ";
		}
		cout << endl;
	}
	//cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
	return 0;
}

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator