UVa 1584 - Circular Sequence Posted on June 8, 2020 The problem asks to find the lexicographically (Dictionary Order) smallest sequence from a given circular sequence. What does it mean? [Read More] Tags: UVa
UVa 10576 - Y2K Accounting BUg Posted on June 8, 2020 A nice backtracking problem! Initially I had some difficulty understanding the problem statement. So, I’ll try to break down the problem statement and illustrate with... [Read More] Tags: UVa
UVa 11078 - Open Credit System Posted on June 6, 2020 Given an array of student scores s of length n, the question formally asks to maximize s[i]−s[j] such that $i < j <... [Read More] Tags: UVa
UVa 11001 - Necklace Posted on June 5, 2020 This is a very interesting problem. We’re given total volume of the clay used as Vtotal and clay volume consumed in the baking process as... [Read More] Tags: UVa
UVa 256 - Quirksome Squares Posted on June 4, 2020 An easy brute force problem. As the input will be from the set {2,4,6,8}, we can precalculate the answer. [Read More] Tags: UVa