(SPOJ) 10864 - Campo minado - Solução 1

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()));
        }        
       
        for (int i = 0; i < qteCampos; i++) {
            int contador = 0;
            if (vetorCampos.get(i) == 1) {
                ++contador;
            }
            if (i > 0 && vetorCampos.get(i-1) == 1) {
                ++contador;
            }
            if (i < qteCampos-1 && vetorCampos.get(i+1) == 1) {
                ++contador;
            }
            System.out.println(contador);
        }

       
        return;
    }
}

Comments

Popular posts from this blog

(Coderbyte) Powers of Two - Solução

(Coderbyte) Dash Insert II - Solução

(CoderByte) Number Search - Solução