Advertisement
JKattackk

Advent 2 Solution

Jan 27th, 2020
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.00 KB | None | 0 0
  1. package com.company;
  2. import java.io.File;
  3. import java.util.Scanner;
  4. public class MainB
  5. {
  6.  
  7.  
  8.     public static void main(String[] args) throws Exception {
  9.         File file = new File("C:\\Users\\Jack\\Desktop\\ADVENT OF CODE\\DAY2\\input.txt");
  10.         Scanner sc = new Scanner(file);
  11.         String[] arr = sc.nextLine().split(",");
  12.         int[] intArray = new int[arr.length];
  13.         for(int x = 0; x <= 99; x++) {
  14.             for(int y = 0; y <= 99; y++)
  15.             {
  16.                 for (int i = 0; i < arr.length; i++) {
  17.                     intArray[i] = Integer.parseInt(arr[i]);
  18.                 }
  19.                 int count = 0;
  20.                 intArray[1] = x;
  21.                 intArray[2] = y;
  22.                 while (count + 3 < intArray.length ) {
  23.                     if (intArray[count] == 1) {
  24.                         if (intArray[count + 1] <= intArray.length && intArray[count + 2] <= intArray.length && intArray[count + 3] <= intArray.length)
  25.                         {
  26.                             intArray[intArray[count + 3]] = intArray[intArray[count + 1]] + intArray[intArray[count + 2]];
  27.                         }
  28.                     } else if(intArray[count] == 2)
  29.                     {
  30.                         if (intArray[count + 1] <= intArray.length && intArray[count + 2] <= intArray.length && intArray[count + 3] <= intArray.length)
  31.                         {
  32.                             intArray[intArray[count + 3]] = intArray[intArray[count + 1]] * intArray[intArray[count + 2]];
  33.                         }
  34.                     }else if(intArray[count] == 99)
  35.                     {
  36.                         break;
  37.                     }
  38.                     count = count + 4;
  39.                 }
  40.                 if (intArray[0] == 19690720) {
  41.                     System.out.println("The noun is " + x + " and the verb is " + y);
  42.                     System.out.println("The answer is " + (x*100+y));
  43.                     break;
  44.                 }
  45.             }
  46.         }
  47.     }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement