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

Posted by KatrineYang at 2016-06-07 23:37:18 on Problem 1020
//============================================================================
// Name        : main1020.cpp
// Author      : 
// Version     :
// Copyright   : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================

#include <iostream>
using namespace std;

int partion(int* array, int p, int r) {
		int x = array[r];
		int i = p - 1;//注意这点,把i设成负值,然后作为移动的标志
		int j;
		for (j = p; j < r; j++) {
		if (array[j] > x) {
		i++;
		int temp = array[j];
		array[j] = array[i];
		array[i] = temp;
		}
		}
		int temp = array[j];
		array[j] = array[i + 1];
		array[i + 1] = temp;
		return i+1;//返回的应该是交换后的哨兵的位置
		}
		//递归解决每个划分后的小数组
		void quickSort(int* array, int p, int r) {
		if (p < r) {
		int q = partion(array, p, r);
		quickSort(array, p, q - 1);
		quickSort(array, q + 1, r);
		}
		}

//bool occ[40][40] = {{false}};

void ff(int *occ, int sideLen){
		bool xj = true;
		int dqidx = -1;
		int zhidx = -1;
		int zhi = 2147483647;
		int i;
		bool tag = false;
		for(int i = 0; i < sideLen; i++){
			if(occ[i] < zhi){
				zhi = occ[i];
				dqidx = i;
				xj = true;
			}
			else if(occ[i] > zhi){
				if(xj){
					zhidx = i;
					tag = true;
					break;
				}
				dqidx = i;
				zhi = occ[i];
				xj = false;
			}
			//idx = i;
		}
		if(!tag){
			zhidx = sideLen;
		}
		cout << dqidx << " " << zhidx << endl;
}


bool caking(int fang, int pieceNum, int *pieceLen, int sideLen, int *occ, bool *state){
	if(fang == pieceNum) return true;
	//首先找到第一个局部极小,
	bool xj = true;
	int dqidx = -1;
	int zhidx = -1;
	int zhi = 2147483647;
	//int idx;
	bool tag = false;
	for(int i = 0; i < sideLen; i++){
		if(occ[i] < zhi){
			zhi = occ[i];
			dqidx = i;
			xj = true;
		}
		else if(occ[i] > zhi){
			if(xj){
				zhidx = i;
				tag = true;
				break;
			}
			dqidx = i;
			zhi = occ[i];
			xj = false;
		}
		//idx = i;
	}
	if(!tag){
		zhidx = sideLen;
	}
	int curPN = -1;
	//现在dqidx和zhidx存放极小区间
	for(int i = 0; i < pieceNum; i++){
		if(state[i] || pieceLen[i] == curPN || pieceLen[i] > zhidx - dqidx || pieceLen[i] + occ[dqidx] > sideLen) continue;
		//cout << fang << " " << pieceLen[i] << endl;
		//for(int j = 0; j < sideLen; j++) cout << occ[j] << " ";
		//cout << endl;
		curPN = pieceLen[i];
		state[i] = true;
		for(int j = dqidx; j < dqidx + pieceLen[i]; j++){
			occ[j] += pieceLen[i];
		}
		if(caking(fang+1, pieceNum, pieceLen, sideLen, occ, state)) return true;
		state[i] = false;
		for(int j = dqidx; j < dqidx + pieceLen[i]; j++){
			occ[j] -= pieceLen[i];
		}
	}
	return false;
}


int main() {
	//int test[6] = {6, 6, 6, 6, 6, 6};
	//ff(test, 6);
	int cases;
	cin >> cases;
	for(int ii = 0; ii < cases; ii++){
		int sideLen;
		int pieceNum;
		int pieceLen[16];
		cin >> sideLen >> pieceNum;
		for(int i = 0; i < pieceNum; i++){
			cin >> pieceLen[i];
		}
		quickSort(pieceLen, 0, pieceNum - 1);//首先排序
		int sum = 0;
		for(int i = 0; i < pieceNum; i++){
			sum += pieceLen[i] * pieceLen[i];
		}
		if(sum != sideLen * sideLen) {
			cout << "HUTUTU!" << endl;
			continue;
		}//判断平方和是否相等
		bool state[16] = {false};
		int occ[40] = {0};

		if(caking(0, pieceNum, pieceLen, sideLen, occ, state)){
			cout << "KHOOOOB!" << endl;
		}
		else{
			cout << "HUTUTU!" << 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