(SPOJ) 10864 - Campo minado - Solução 2
Diferente da outra solução, este código está reduzido por utilizar menos 'if' ao seu fim.
import java.io.*;
import java.util.*;
import java.lang.Math;
import java.math.*;
class Main {
public static void main(String[] args) throws NumberFormatException, IOException {
Main processando = new Main();
processando.processa();
System.exit(0);
}
void processa() throws NumberFormatException, IOException {
String line = "";
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
line = br.readLine();
StringTokenizer tokenizer = new StringTokenizer(line);
int qteCampos = Integer.valueOf(tokenizer.nextToken());
ArrayList<Integer> vetorCampos = new ArrayList<Integer>();
for (int i = 0; i < qteCampos; i++) {
line = br.readLine();
tokenizer = new StringTokenizer(line);
vetorCampos.add(Integer.valueOf(tokenizer.nextToken()));
}
int[] vetor = {-1, 0, 1};
for (int i = 0; i < qteCampos; i++) {
int contador = 0;
for (int j = 0; j < 3; j++) {
int tmp = i + vetor[j];
if (tmp >= 0 && tmp < qteCampos && vetorCampos.get(tmp) == 1) {
++contador;
}
}
System.out.println(contador);
}
return;
}
}
import java.io.*;
import java.util.*;
import java.lang.Math;
import java.math.*;
class Main {
public static void main(String[] args) throws NumberFormatException, IOException {
Main processando = new Main();
processando.processa();
System.exit(0);
}
void processa() throws NumberFormatException, IOException {
String line = "";
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
line = br.readLine();
StringTokenizer tokenizer = new StringTokenizer(line);
int qteCampos = Integer.valueOf(tokenizer.nextToken());
ArrayList<Integer> vetorCampos = new ArrayList<Integer>();
for (int i = 0; i < qteCampos; i++) {
line = br.readLine();
tokenizer = new StringTokenizer(line);
vetorCampos.add(Integer.valueOf(tokenizer.nextToken()));
}
int[] vetor = {-1, 0, 1};
for (int i = 0; i < qteCampos; i++) {
int contador = 0;
for (int j = 0; j < 3; j++) {
int tmp = i + vetor[j];
if (tmp >= 0 && tmp < qteCampos && vetorCampos.get(tmp) == 1) {
++contador;
}
}
System.out.println(contador);
}
return;
}
}
Comments
Post a Comment