赞
踩
整型字符串数组cars[],其中1表示有车,0表示没车,数组长度小于1000。
整型数字字符串,表示最少停车数目。
示例 1:
1,0,1
2
示例 2:
1,1,0,0,1,1,1,0,1
3
Java代码实现:
import java.util.Scanner;
public class prakingCar {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
String[] str = in.nextLine().split(",");
String s = "";
for (String st : str) {
s += st;
}
String[] newStr = s.split("0");
int count = 0;
for (int i = 0; i < newStr.length; i++) {
int length = newStr[i].length();
if (length == 0) {
continue;
}
if (length % 3 != 0) {
count += (length - length % 3) / 3 + 1;
} else {
count += length / 3;
}
}
System.out.println(count);
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。