给定字符串S和数字X。有M个掷骰子的玩家。玩家不断掷骰子直到获得X以外的数字。在字符串S中,S [i]代表骰子在第i卷的数字。任务是找到M。请注意, S中的最后一个字符永远不会是X。
例子:
Input: s = “3662123”, X = 6
Output: 5
First player rolls and gets 3.
Second player rolls and gets 6, 6 and 2.
Third player rolls and gets 1.
Fourth player rolls and gets 2.
Fifth player rolls and gets 3.
Input: s = “1234223”, X = 2
Output: 4
方法:迭代字符串并计算非X的字符。不是X的字符数就是玩家数。
下面是上述方法的实现:
C++
// C++ implementation of the approach
#include
using namespace std;
// Function to return the number of players
int findM(string s, int x)
{
// Initialize cnt as 0
int cnt = 0;
// Iterate in the string
for (int i = 0; i < s.size(); i++) {
// Check for numbers other than x
if (s[i] - '0' != x)
cnt++;
}
return cnt;
}
// Driver code
int main()
{
string s = "3662123";
int x = 6;
cout << findM(s, x);
return 0;
}
Java
// Java implementation of the approach
import java.util.*;
class GFG
{
// Function to return the number of players
static int findM(String s, int x)
{
// Initialize cnt as 0
int cnt = 0;
// Iterate in the string
for (int i = 0; i < s.length(); i++)
{
// Check for numbers other than x
if (s.charAt(i) - '0' != x)
cnt++;
}
return cnt;
}
// Driver code
public static void main(String args[])
{
String s = "3662123";
int x = 6;
System.out.println(findM(s, x));
}
}
//This code is contributed by
// Surendra_Gangwar
Python3
# Python 3 implementation of the approach
# Function to return the number of players
def findM(s, x):
# Initialize cnt as 0
cnt = 0
# Iterate in the string
for i in range(len(s)):
# Check for numbers other than x
if (ord(s[i]) - ord('0') != x):
cnt += 1
return cnt
# Driver code
if __name__ == '__main__':
s = "3662123"
x = 6
print(findM(s, x))
# This code is contributed by
# Surendra_Gangwar
C#
// C# implementation of the approach
using System;
class GFG
{
// Function to return the number of players
static int findM(String s, int x)
{
// Initialize cnt as 0
int cnt = 0;
// Iterate in the string
for (int i = 0; i < s.Length; i++)
{
// Check for numbers other than x
if (s[i] - '0' != x)
cnt++;
}
return cnt;
}
// Driver code
public static void Main()
{
String s = "3662123";
int x = 6;
Console.Write(findM(s, x));
}
}
// This code is contributed by
// mohit kumar
PHP
输出:
5