本文主要是介绍B. Inna and New Matrix of Candies,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Inna likes sweets and a game called the "Candy Matrix". Today, she came up with the new game "Candy Matrix 2: Reload".The field for the new game is a rectangle table of size n × m. Each line of the table contains one cell with a dwarf figurine, one cell with a candy, the other cells of the line are empty. The game lasts for several moves. During each move the player can choose all lines of the matrix where dwarf is not on the cell with candy and shout "Let's go!". After that, all the dwarves from the chosen lines start tosimultaneously move to the right. During each second, each dwarf goes to the adjacent cell that is located to the right of its current cell. The movement continues until one of the following events occurs:
some dwarf in one of the chosen lines is located in the rightmost cell of his row;
some dwarf in the chosen lines is located in the cell with the candy.
The point of the game is to transport all the dwarves to the candy cells.
Inna is fabulous, as she came up with such an interesting game. But what about you? Your task is to play this game optimally well. Specifically, you should say by the given game field what minimum number of moves the player needs to reach the goal of the game.
Input
The first line of the input contains two integers n and m (1 ≤ n ≤ 1000; 2 ≤ m ≤ 1000).
Next n lines each contain m characters — the game field for the "Candy Martix 2: Reload". Character "*" represents an empty cell of the field, character "G" represents a dwarf and character "S" represents a candy. The matrix doesn't contain other characters. It is guaranteed that each line contains exactly one character "G" and one character "S".
Output
In a single line print a single integer — either the minimum number of moves needed to achieve the aim of the game, or -1, if the aim cannot be achieved on the given game field.
Sample test(s)
input
*G*S
G**S
*G*S
2
1 3
S*G
output
-1
题意:n*m的方格,每行中仅有一个S和G,每一步可以使所有G向右移,直到某个G已到了最后一列或某个G已到了S。求所有G到S需要的最少的步数。
#include <iostream>
#include <stdio.h>
#include <cstring>
#include<Set>
#include <cstdio>
#include <algorithm>
using namespace std;
char s[1005][1005];
set<int>Set;
int main()
{int n,m;int a,b;while(cin>>n>>m){int flag=0;for(int i=0;i<n;i++){for(int j=0;j<m;j++){cin>>s[i][j];if(s[i][j]=='G')a=j;else if(s[i][j]=='S')b=j;}if(b-a<0)flag=1;elseSet.insert(b-a-1);}if(flag==0)cout<<Set.size()<<endl;elsecout<<"-1"<<endl;}return 0;
}
这篇关于B. Inna and New Matrix of Candies的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!