BubbleSortIterations
SRM 359 · 2007-07-21 · by bmerry
Problem Statement
L[0] = L0
for i := 1 to n-1
L[i] = (L[i-1] * X[i % length(X)] + Y[i % length(Y)]) MOD M
You must calculate the number of iterations required to bubble-sort L in non-decreasing order.Notes
- The input is encoded purely for convenience. The intended solution does not rely on any properties of the way it is generated, and will work for any list L.
Constraints
- X and Y will each contain between 1 and 50 elements, inclusive.
- Each element of X and Y will be between 0 and M-1, inclusive.
- L0 will be between 0 and M-1, inclusive.
- M will be between 1 and 1,000,000, inclusive.
- n will be between 1 and 100,000, inclusive.
{0}
{10, 1, 5, 2, 3}
10
100
5
Returns: 3
The generated sequence is 10, 1, 5, 2, 3. After one iteration it is 1, 5, 2, 3, 10. After two it is 1, 2, 3, 5, 10. The third iteration detects that the sequence is now sorted.
{0}
{1, 3, 5, 7, 9}
1
100
5
Returns: 1
The generated sequence is 1, 3, 5, 7, 9. The sequence is already sorted, but one iteration is required to detect this.
{999998}
{500000}
500000
1000000
100
Returns: 1
Be careful not to overflow when generating L.
{234, 56, 567, 3147, 23464, 57128, 1254, 45, 23247, 1347, 145, 123}
{3413, 171, 58, 569, 40, 467, 2456, 246, 2684, 5, 61, 8, 258, 24524, 2, 58, 245, 674}
1
99991
100000
Returns: 99228
{0}
{1, 2, 3, 4, 5, 6, 7, 0}
1
100
8
Returns: 8
{100000}
{900000, 0, 100000, 200000, 300000, 400000, 500000, 600000, 700000, 800000}
900000
1000000
10
Returns: 2
Tests for 64-bit in sequence generation.
{2, 3, 4, 5, 6, 7}
{1, 0}
4
15
10
Returns: 7
Tests X.length > Y.length
{1}
{10}
0
1000000
100000
Returns: 1
Maximum length sorted sequence, spanning the range
{1}
{999990}
999995
1000000
100000
Returns: 100000
Maximum length decreasing sequence.
Submissions are judged against all 29 archived test cases, of which 9 are shown here. Case numbers match the judge’s.
Language: C++17 · define a public class BubbleSortIterations with a public method int numIterations(vector<int> X, vector<int> Y, int L0, int M, int n) · 29 test cases · 2 s / 256 MB per case