Regular expressions to find if I won a game
이전 댓글 표시
Hi all
I'm having trouble finding the regular expression for a problem.
The problem is:
Consider a game in which you have a bag with blue and red balls in equal numbers and a two-pan balance. Drawing, randomly from the bag one ball at a time, you must place the ball on the if it's blue, or on the right if it's red. If,at any given time, there are three more balls of one colour than another, the balance unbalances and all the balls fall to the ground, losing the game. The game ends successfully when the bag is empty, if the scales don't tip until the last ball is placed.
Considering the sequence of balls drawn, construct a regular that verifies whether or not the player has won the game:
I tried: (B{0,2}R{0,2}|R{0,2}B{0,2})|(R{0,1}B?R{0,1}|B{0,1}R?B{0,1})|(R{0,2}B?R?)|(B{0,2}R?) but without sucess.
Anyone can help me?
댓글 수: 4
Here is a start:
n = 10;
game = ones(2*n,1);
r = randsample(2*n,n)
game(r) = -1;
If "1" stands for "blue" and "-1" stands for "red" in a game with n blue and n red balls, it's now easy to decide whether the game ended successfully or not, isn't it ?
PEDRO ALEXANDRE Fernandes
2023년 12월 2일
이동: Torsten
2023년 12월 2일
답변 (1개)
Ishu
2024년 1월 2일
Hi Pedro Alexandre Fernandes,
I understand that you want to check whether a given sequence of balls would result in a win or a loss in the described game.
In this case you can keep the count of numbers of blue balls picked and number of red balls picked and then can check the difference between them.
function hasWon = check(seq)
% Initialize counters
blue = 0;
red = 0;
% Iterate through the sequence of balls
for i = 1:length(seq)
if seq(i) == 'B' % If the ball is blue
blue = blue + 1;
elseif seq(i) == 'R' % If the ball is red
red = red + 1;
else
error('Invalid ball color. Use "B" for blue and "R" for red.');
end
% Check the balance
if abs(blue - red) > 2
hasWon = false;
return; % The game is lost
end
end
% game won
hasWon = true;
end
Hope it helps!
카테고리
도움말 센터 및 File Exchange에서 Number games에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!