codechef Attic Crossing 题解

Attic Crossing

Digory Kirke and Polly Plummer are two kids living next door to each other. The attics of the two houses are connected to each other through a passage. Digory's Uncle Andrew has been secretly doing strange things in the attic of his house, and he always ensures that the room is locked. Being curious, Digory suspects that there is another route into the attic through Polly's house, and being curious as kids always are, they wish to find out what it is that Uncle Andrew is secretly up to.

So they start from Polly's house, and walk along the passageway to Digory's. Unfortunately, along the way, they suddenly find that some of the floorboards are missing, and that taking a step forward would have them plummet to their deaths below.

Dejected, but determined, they return to Polly's house, and decide to practice long-jumping in the yard before they re-attempt the crossing of the passage. It takes them exactly one day to master long-jumping a certain length. Also, once they have mastered jumping a particular length L, they are able to jump any amount less than equal to L as well.

The next day they return to their mission, but somehow find that there is another place further up the passage, that requires them to jump even more than they had practiced for. So they go back and repeat the process.

Note the following:

  • At each point, they are able to sense only how much they need to jump at that point, and have no idea of the further reaches of the passage till they reach there. That is, they are able to only see how far ahead is the next floorboard.
  • The amount they choose to practice for their jump is exactly the amount they need to get across that particular part of the passage. That is, if they can currently jump upto a length L0, and they require to jump a length L1(> L0) at that point, they will practice jumping length L1 that day.
  • They start by being able to "jump" a length of 1.

Find how many days it will take them to cross the passageway. In the input, the passageway is described as a string P of '#'s and '.'s. A '#' represents a floorboard, while a '.' represents the absence of a floorboard. The string, when read from left to right, describes the passage from Polly's house to Digory's, and not vice-versa.

Input

The first line consists of a single integer T, the number of testcases.
Each of the next T lines consist of the string P for that case.

Output

For each case, output the number of days it takes them to cross the passage.

Constraints

  • 1 ≤ T ≤ 1,000,000 (106)
  • 1 ≤ |P| ≤ 1,000,000 (106)
  • The total length of P will be ≤ 5,000,000 (5 * 106)across all test-cases of a test-file
  • P will consist of only the characters # and .
  • The first and the last characters of P will be #.

Example

Input:
4
####
##.#..#
##..#.#
##.#....#

Output:
0
2
1
2


这次是过百万数据的输入输出了。
1 这次记得要处理整形转换成字符型的时候,需要特殊处理0了
2 末尾判断输入结束
过百万数据0.01ms处理完毕。

#pragma once
#include <stdio.h>

class AtticCrossing
{
	const static int MAX_BU = 5120;
	const static int FLASH_P = MAX_BU - 12;
	int st, len, oSt;
	char inBuffer[MAX_BU];
	char outBuffer[MAX_BU];

	char getFromBuf()
	{
		if (st >= len)
		{
			len = fread(inBuffer, 1, MAX_BU, stdin);
			st = 0;
		}
		return inBuffer[st++];
	}

	void intToBuf(int n, char sep)
	{
		if (oSt >= FLASH_P)
		{
			fwrite(outBuffer, 1, oSt, stdout);
			oSt = 0;
		}
		if (0 == n)
		{
			outBuffer[oSt++] = '0';
			outBuffer[oSt++] = sep;
			return;
		}
		int i = oSt;
		while (n)
		{
			outBuffer[oSt++] = n % 10 + '0';
			n /= 10;
		}
		int j = oSt-1;
		while (i < j)
		{
			char t = outBuffer[i];
			outBuffer[i] = outBuffer[j];
			outBuffer[j] = t;
			i++, j--;
		}
		outBuffer[oSt++] = sep;
	}

	void FlashLeft()
	{
		if (oSt) fwrite(outBuffer, 1, oSt, stdout);
	}

public:
	AtticCrossing() : st(0), len(0), oSt(0)
	{
		int T = 0, curJump = 0, curGap = 0, days = 0;
		scanf("%d", &T);
		getchar();
		char c;
		while (T--)
		{
			curJump = 0, curGap = 0, days = 0;

			while (c = getFromBuf())
			{
				if ('.' == c) curGap++;
				else if (curGap)
				{
					if (curJump < curGap) days++, curJump = curGap;
					curGap = 0;
				}
				if ('\n' == c || !len) break;
			}
			intToBuf(days, '\n');
		}
		FlashLeft();
	}
};

int atticCrossing()
{
	AtticCrossing();
	return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值