CSES - Datatähti 2025 alku - Results
Submission details
Task:Tikut
Sender:EmuBird
Submission time:2024-11-06 23:52:15 +0200
Language:Rust (2021)
Status:READY
Result:8
Feedback
groupverdictscore
#10
#2ACCEPTED8
#30
#40
#50
#60
Test results
testverdicttimegroup
#1ACCEPTED0.00 s1, 3, 4, 5, 6details
#20.00 s1, 4, 5, 6details
#30.00 s1, 4, 5, 6details
#40.00 s1, 4, 5, 6details
#5ACCEPTED0.00 s2, 5, 6details
#6ACCEPTED0.01 s2, 5, 6details
#7ACCEPTED0.00 s3, 5, 6details
#8ACCEPTED0.00 s3, 5, 6details
#9ACCEPTED0.00 s3, 5, 6details
#10ACCEPTED0.00 s3, 5, 6details
#110.00 s3, 5, 6details
#120.00 s4, 5, 6details
#130.00 s4, 5, 6details
#140.00 s4, 5, 6details
#150.00 s4, 5, 6details
#160.01 s5, 6details
#170.01 s5, 6details
#180.01 s5, 6details
#190.01 s5, 6details
#20--6details
#21--6details
#22--6details

Code

use std::io;

struct Stick {
    length: u32, // Original length. Shall never be modified.
    parts: Vec<u32> // Lengths of each part. Should always be in descending order.
}

fn main() {
    let stdin = io::stdin();

    let (n, m) = {
        let mut input: String = String::new();
        stdin.read_line(&mut input).unwrap();
        let mut iter = input.trim().split_whitespace().map(|x| x.parse::<u32>().unwrap());
        (iter.next().unwrap(), iter.next().unwrap())
    };

    let mut sticks: Vec<Stick> = {
        let mut input: String = String::new();
        stdin.read_line(&mut input).unwrap();
        input.trim().split_whitespace().map(|x| {
            let length = x.parse::<u32>().unwrap();
            Stick {
                length,
                parts: vec![length]
            }
        }).collect()
    };
    assert_eq!(sticks.len(), n as usize);

    sticks.sort_by(|a, b| b.length.cmp(&a.length));
    let original_max = sticks.first().unwrap().length;
    let original_min = sticks.last().unwrap().length;
    let mut max = (original_max, 0);
    let mut min = (original_min, sticks.len() - 1);

    let mut answers = Vec::<u32>::with_capacity(m as usize);

    let mut k = 0;
    let mut prev_k: u32 = k;
    let mut index: usize = 0;
    let mut denominator: u32 = 2;
    while k < m {
        let split = sticks[index].length >= get_last_useful_stick_length(denominator, &original_max);
        if split {
            let previous_part_count = sticks[index].parts.len() as u32;
            for inner_denominator in (previous_part_count + 1)..=denominator {
                if k >= m {
                    break;
                }

                let new_parts = divide_stick(sticks[index].length, inner_denominator);
                debug_assert!(new_parts[0] <= max.0);
                let old_parts = &sticks[index].parts;

                let required_cuts = new_parts.len() - old_parts.len();
                if required_cuts == 0 {
                    continue;
                } else if required_cuts > 1 {
                    panic!("too many cuts");
                }

                sticks[index].parts = new_parts;

                // Change max if needed
                if index == max.1 {
                    max.0 = sticks[index].parts[0];
                    for i in (index..sticks.len()).chain([0]) {
                        if sticks[i].parts[0] > max.0 {
                            max = (sticks[i].parts[0], i);
                        }
                    }
                }

                // Change min if needed
                if sticks[index].parts.last().unwrap() < &min.0 {
                    min = (*sticks[index].parts.last().unwrap(), index);
                }

                k += 1;
                answers.push(max.0 - min.0);
            }
        }

        if split && sticks.len() > index + 1 {
            index += 1;
        } else {
            if prev_k == k {
                eprintln!("Nothing has been split with denominator {} (k = {}), so this is probably a never ending loop. Breaking out.", denominator, k);
                break;
            }
            prev_k = k;
            denominator += 1;
            index = 0;
        }
    }

    let answers: Vec<String> = answers.iter().take(m as usize).map(|a| a.to_string()).collect();
    println!("{}", answers.join(" "))
}


fn get_last_useful_stick_length(denominator: u32, original_max: &u32) -> u32 {
    original_max / denominator + if original_max % denominator == 0 { 0 } else { 1 }
}

/// Divides a stick of given length into `denominator` parts.
/// The returned Vec is in descending size order. max - min <= 1 inside the Vec.
fn divide_stick(length: u32, denominator: u32) -> Vec<u32> {
    let mut parts = Vec::with_capacity(denominator as usize);

    let div = length / denominator;
    if div > 0 {
        let mut extra = length % denominator;
        for _ in 0..denominator {
            if extra > 0 {
                extra -= 1;
                parts.push(div + 1);
            } else {
                parts.push(div);
            }
        }
    } else {
        for _ in 0..length {
            parts.push(1);
        }
    }

    debug_assert_eq!(parts.iter().sum::<u32>(), length);
    debug_assert!(parts.iter().max().unwrap() - parts.iter().min().unwrap() <= 1);
    parts
}

Test details

Test 1

Group: 1, 3, 4, 5, 6

Verdict: ACCEPTED

input
1 1
6

correct output

user output
0

Test 2

Group: 1, 4, 5, 6

Verdict:

input
5 10
4 8 6 2 7

correct output
5 4 2 2 2 1 1 1 1 1 

user output
5 4 2 2 2 1 1 2 2 1

Test 3

Group: 1, 4, 5, 6

Verdict:

input
5 10
5 5 8 6 7

correct output
3 3 2 3 2 2 1 1 1 2 

user output
3 3 2 3 2 2 1 1 2 2

Test 4

Group: 1, 4, 5, 6

Verdict:

input
5 10
8 7 9 6 10

correct output
4 4 3 3 2 2 1 2 2 1 

user output
4 4 3 3 2 2 1 2 2 2

Test 5

Group: 2, 5, 6

Verdict: ACCEPTED

input
1000 1071
3 2 3 1 3 3 2 3 2 3 2 2 2 1 2 ...

correct output
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...

user output
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...

Test 6

Group: 2, 5, 6

Verdict: ACCEPTED

input
1000 1500
3 2 2 3 2 3 2 2 2 3 2 2 3 3 3 ...

correct output
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...

user output
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...

Test 7

Group: 3, 5, 6

Verdict: ACCEPTED

input
1000 2
15 710 210 347 398 66 318 277 ...

correct output
994 994 

user output
994 994

Test 8

Group: 3, 5, 6

Verdict: ACCEPTED

input
1000 2
743 890 592 942 736 969 616 50...

correct output
498 496 

user output
498 496

Test 9

Group: 3, 5, 6

Verdict: ACCEPTED

input
1000 2
987 968 920 994 988 918 914 95...

correct output
500 500 

user output
500 500

Test 10

Group: 3, 5, 6

Verdict: ACCEPTED

input
1000 2
996 1000 998 998 999 997 997 9...

correct output
500 500 

user output
500 500

Test 11

Group: 3, 5, 6

Verdict:

input
1000 2
501 501 501 501 501 501 501 50...

correct output
1 168 

user output
1 251

Test 12

Group: 4, 5, 6

Verdict:

input
100 200
145 136 74 83 73 36 196 115 11...

correct output
194 190 189 183 182 181 181 17...

user output
194 190 189 183 182 181 181 17...

Test 13

Group: 4, 5, 6

Verdict:

input
100 200
157 110 168 155 192 107 146 15...

correct output
95 96 96 95 93 94 94 94 90 91 ...

user output
95 96 96 95 93 94 94 94 90 91 ...

Test 14

Group: 4, 5, 6

Verdict:

input
50 200
137 118 160 118 146 160 140 18...

correct output
98 98 98 96 90 91 88 88 84 86 ...

user output
98 98 98 96 90 91 88 88 84 86 ...

Test 15

Group: 4, 5, 6

Verdict:

input
100 200
147 174 186 148 155 128 158 18...

correct output
99 99 98 98 97 97 96 96 95 95 ...

user output
99 99 98 98 97 97 96 96 95 95 ...

Test 16

Group: 5, 6

Verdict:

input
1000 2000
928772177 816188227 216592201 ...

correct output
991676844 990940224 990685481 ...

user output
991676844 990940224 990685481 ...

Test 17

Group: 5, 6

Verdict:

input
1000 2000
665759876 597950008 615453266 ...

correct output
498801198 498681904 498504321 ...

user output
498801198 498681904 498504321 ...

Test 18

Group: 5, 6

Verdict:

input
500 2000
683288817 784230412 626685186 ...

correct output
497667621 498434895 495465990 ...

user output
497667621 498434895 495465990 ...

Test 19

Group: 5, 6

Verdict:

input
1000 2000
666667000 809309500 571572000 ...

correct output
499499500 499249250 498999000 ...

user output
499499500 499249250 498999000 ...

Test 20

Group: 6

Verdict:

input
100000 200000
861772559 734298084 983382252 ...

correct output
499973914 499985299 499985141 ...

user output
(empty)

Test 21

Group: 6

Verdict:

input
30000 200000
691834579 617419813 514778075 ...

correct output
499967533 499976270 499969810 ...

user output
(empty)

Test 22

Group: 6

Verdict:

input
100000 200000
820255000 960780000 741965000 ...

correct output
499995000 499992500 499990000 ...

user output
(empty)