USACO Bronze 2017 December - The Bovine Shuffle
Authors: Sathvik Chundru, Jesse Choe, Ryan Chou
Official Analysis (C++ and Java)
If the th cow moves to after one shuffle, then the cow at was at one shuffle ago.
Implementation
Time Complexity:
C++
#include <bits/stdc++.h>using namespace std;const int SHUFFLE_NUM = 3;int main() {freopen("shuffle.in", "r", stdin);int n;cin >> n;
Java
import java.io.*;import java.util.*;public class Shuffle {static final int SHUFFLE_NUM = 3;public static void main(String[] args) throws IOException {BufferedReader read = new BufferedReader(new FileReader("shuffle.in"));int n = Integer.parseInt(read.readLine());int[] shuffle = Arrays.stream(read.readLine().split(" "))
Python
SHUFFLE_NUM = 3with open("shuffle.in") as read:n = int(read.readline())shuffle = list(map(int, read.readline().split()))ids = list(map(int, read.readline().split()))for _ in range(SHUFFLE_NUM):past_order = [0] * nfor i in range(n):
Join the USACO Forum!
Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!