CSES - Datatähti 2024 alku - Results
Submission details
Task:Käännöt
Sender:Roopekt
Submission time:2023-11-05 13:55:03 +0200
Language:Rust
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
Test results
testverdicttimegroup
#10.00 s1details
#20.00 s1details
#30.00 s1details
#40.00 s1details
#50.00 s1details
#60.00 s2details
#7ACCEPTED0.00 s2details
#80.00 s2details
#90.00 s2details
#100.00 s2details
#110.00 s2details
#120.00 s2details
#130.00 s2details
#140.00 s2details
#15ACCEPTED0.00 s2details
#160.00 s2details
#170.00 s3details
#180.00 s3details
#190.00 s3details
#200.00 s3details
#210.00 s3details
#220.00 s3details
#230.00 s3details
#24ACCEPTED0.00 s3details
#250.00 s3details
#260.00 s4details
#270.00 s4details
#280.00 s4details
#290.00 s4details
#300.00 s4details
#310.00 s4details
#32ACCEPTED0.00 s4details
#330.00 s4details
#340.00 s4details

Code

// #[cfg(test)]
// mod tests;

use std::io::stdin;
use std::vec::Vec;

struct Operator {
    array: Vec<i32>,
    flip_length: usize,
    flip_record: Vec<usize>
}
impl Operator {
    pub fn new(array: Vec<i32>, flip_length: usize) -> Self {
        Self  {
            array,
            flip_length,
            flip_record: Vec::new()
        }
    }

    pub fn flip(&mut self, first_moving_index: usize) {
        flip(&mut self.array, first_moving_index, self.flip_length);
        self.flip_record.push(first_moving_index)
    }
}

fn flip(array: &mut Vec<i32>, first_moving_index: usize, flip_length: usize) {
    let last_moving_index = first_moving_index + flip_length - 1;

    for i in 0..flip_length / 2 {
        (array[first_moving_index + i], array[last_moving_index - i]) = (array[last_moving_index - i], array[first_moving_index + i])
    }
}

//inefficient
fn get_index_of_item_to_move(operator: &Operator, destination: usize) -> Option<usize> {
    let value = *operator.array
        .iter()
        .skip(destination)
        .max()
        .unwrap();

    for i in destination..operator.array.len() {
        if operator.array[i] == value {

            //with an odd flip_length, elements can only be moved by even amounts
            let movement_is_possible = operator.flip_length % 2 == 0 ||
                (i - destination) % 2 == 0;
            
            if movement_is_possible {
                return Some(i);
            }
        }
    }

    None
}

fn bring_to_proximity(operator: &mut Operator, destination: usize, mut index_to_move: usize) -> usize {
    let movement_amount = operator.flip_length - 1;
    while (index_to_move - destination) >= movement_amount {
        let new_position = index_to_move - movement_amount;
        operator.flip(new_position);
        index_to_move = new_position;
    }
    index_to_move
}

//it is assumed that the position_before_flip is within the flip range
fn get_position_after_flip(position_before_flip: usize, first_moving_index: usize, flip_length: usize) -> usize {
    let last_moving_index = first_moving_index + flip_length - 1;
    first_moving_index + (last_moving_index - position_before_flip)
}

fn fine_tune_position(operator: &mut Operator, destination: usize, mut index_to_move: usize) {
    //make sure the distance is even
    if (index_to_move - destination) % 2 == 1 {
        assert!(operator.flip_length % 2 == 0);
        operator.flip(destination);
        index_to_move = get_position_after_flip(index_to_move, destination, operator.flip_length);
    }

    let step_count = (index_to_move - destination) / 2;
    for _ in 0..step_count {
        //move index_to_move 2 places left (towards destination)
        operator.flip(destination + 1);
        operator.flip(destination);
    }
}

fn sort_array(operator: &mut Operator) -> bool {
    for destination in 0..(operator.array.len() - operator.flip_length) {
        let mut index_to_move = match get_index_of_item_to_move(operator, destination) {
            Some(index) => index,
            None => return false
        };

        index_to_move = bring_to_proximity(operator, destination, index_to_move);
        fine_tune_position(operator, destination, index_to_move);
    }

    let end: Vec<i32> = operator.array[(operator.array.len() - operator.flip_length)..operator.array.len()]
        .iter().copied().collect();
    let end_is_sorted = end.windows(2).all(|w| w[0] >= w[1]);
    let end_is_reverse_sorted = end.windows(2).all(|w| w[0] <= w[1]);

    if end_is_sorted {
        return true;
    }
    else if end_is_reverse_sorted {
        operator.flip(operator.array.len() - operator.flip_length);
        return true;
    }
    else {
        return false;//might still be sortable!
    }
}

fn main() {
    let mut input = stdin().lines();

    let line = input.next().unwrap().unwrap();
    let mut split = line.split_whitespace();
    let _length: usize = split.next().unwrap().parse().unwrap();
    let flip_length: usize = split.next().unwrap().parse().unwrap();

    let line = input.next().unwrap().unwrap();
    let array: Vec<i32> = line
        .split_whitespace()
        .map(|s| s.parse().unwrap())
        .collect();

    let mut operator = Operator::new(array, flip_length);
    let sorting_successful = sort_array(&mut operator);

    if sorting_successful {
        println!("YES");
    }
    else {
        println!("NO");
        return;
    }

    let flip_string = operator.flip_record
        .iter()
        .map(|&i| i.to_string())
        .reduce(|acc, s| format!("{acc} {s}"))
        .unwrap_or_default();
    println!("{}", operator.flip_record.len());
    println!("{flip_string}");
}

Test details

Test 1

Group: 1

Verdict:

input
5 2
1 2 3 4 5

correct output
YES
0

user output
YES
10
3 2 1 0 3 2 1 3 2 3

Test 2

Group: 1

Verdict:

input
5 2
2 1 3 4 5

correct output
YES
1
1

user output
YES
9
3 2 1 0 3 2 1 3 2

Test 3

Group: 1

Verdict:

input
20 2
6 20 18 2 16 13 19 17 8 14 11 ...

correct output
YES
366
2 3 4 5 6 7 8 9 10 11 12 13 14...

user output
YES
58
0 5 4 3 2 1 2 6 5 4 3 5 4 15 1...
Truncated

Test 4

Group: 1

Verdict:

input
100 2
100 92 62 88 12 7 43 31 19 72 ...

correct output
YES
2876
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output
YES
2512
74 73 72 71 70 69 68 67 66 65 ...
Truncated

Test 5

Group: 1

Verdict:

input
100 2
100 99 98 97 96 95 94 93 92 91...

correct output
YES
5248
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output
YES
0

Test 6

Group: 2

Verdict:

input
5 3
1 2 3 4 5

correct output
YES
0

user output
YES
4
2 0 1 2

Test 7

Group: 2

Verdict: ACCEPTED

input
5 3
3 5 4 1 2

correct output
NO

user output
NO

Test 8

Group: 2

Verdict:

input
5 3
5 2 1 4 3

correct output
YES
8
1 2 1 3 1 2 3 1

user output
YES
2
1 2

Test 9

Group: 2

Verdict:

input
20 3
19 14 1 18 3 4 11 20 13 6 17 8...

correct output
YES
52
8 10 12 14 16 18 1 3 5 7 9 11 ...

user output
NO

Test 10

Group: 2

Verdict:

input
20 3
9 6 13 18 5 10 3 2 7 20 1 4 19...

correct output
YES
50
10 12 14 16 18 13 15 17 4 6 8 ...

user output
NO

Test 11

Group: 2

Verdict:

input
500 3
53 52 21 76 25 142 5 4 83 176 ...

correct output
YES
15194
334 336 338 340 342 344 346 34...

user output
NO

Test 12

Group: 2

Verdict:

input
500 3
51 44 147 172 1 28 27 82 233 1...

correct output
YES
15565
366 368 370 372 374 376 378 38...

user output
NO

Test 13

Group: 2

Verdict:

input
500 3
75 46 179 62 221 14 67 154 89 ...

correct output
YES
15920
454 456 458 460 462 464 466 46...

user output
NO

Test 14

Group: 2

Verdict:

input
500 3
161 54 285 12 71 142 111 94 97...

correct output
YES
15931
408 410 412 414 416 418 420 42...

user output
NO

Test 15

Group: 2

Verdict: ACCEPTED

input
500 3
122 260 455 113 315 276 433 43...

correct output
NO

user output
NO

Test 16

Group: 2

Verdict:

input
500 3
499 500 497 498 495 496 493 49...

correct output
YES
62264
2 4 6 8 10 12 14 16 18 20 22 2...

user output
NO

Test 17

Group: 3

Verdict:

input
5 4
1 2 3 4 5

correct output
YES
0

user output
YES
5
1 0 1 0 1

Test 18

Group: 3

Verdict:

input
5 4
5 1 2 3 4

correct output
YES
4
1 2 1 2

user output
YES
1
1

Test 19

Group: 3

Verdict:

input
500 4
58 14 107 124 4 113 24 290 56 ...

correct output
YES
15698
389 392 395 398 401 404 407 41...

user output
NO

Test 20

Group: 3

Verdict:

input
500 4
113 187 278 242 23 67 48 298 3...

correct output
YES
15004
480 481 480 482 485 488 491 49...

user output
NO

Test 21

Group: 3

Verdict:

input
500 4
5 233 199 35 213 354 11 134 30...

correct output
YES
16770
458 461 464 467 470 473 476 47...

user output
NO

Test 22

Group: 3

Verdict:

input
500 4
169 47 21 137 57 138 360 147 4...

correct output
YES
15889
497 371 372 371 373 376 379 38...

user output
NO

Test 23

Group: 3

Verdict:

input
500 4
493 409 291 313 156 443 496 40...

correct output
YES
22886
480 481 480 482 485 488 491 49...

user output
NO

Test 24

Group: 3

Verdict: ACCEPTED

input
500 4
137 99 100 226 326 298 140 340...

correct output
NO

user output
NO

Test 25

Group: 3

Verdict:

input
500 4
500 499 498 497 496 495 494 49...

correct output
YES
41458
1 2 1 2 5 8 11 14 17 20 23 26 ...

user output
YES
0

Test 26

Group: 4

Verdict:

input
5 5
1 2 3 4 5

correct output
YES
0

user output
YES
1
0

Test 27

Group: 4

Verdict:

input
5 5
5 4 3 2 1

correct output
YES
1
1

user output
YES
0

Test 28

Group: 4

Verdict:

input
500 5
145 26 285 154 147 314 141 40 ...

correct output
YES
13786
216 220 224 228 232 236 240 24...

user output
NO

Test 29

Group: 4

Verdict:

input
500 5
137 22 399 292 249 6 51 224 42...

correct output
YES
13465
456 460 464 468 472 476 480 48...

user output
NO

Test 30

Group: 4

Verdict:

input
500 5
153 52 85 100 329 60 433 468 4...

correct output
YES
13642
377 378 377 380 384 388 392 39...

user output
NO

Test 31

Group: 4

Verdict:

input
500 5
267 326 95 108 189 32 291 366 ...

correct output
YES
14639
213 214 213 216 220 224 228 23...

user output
NO

Test 32

Group: 4

Verdict: ACCEPTED

input
500 5
15 450 272 80 321 101 247 438 ...

correct output
NO

user output
NO

Test 33

Group: 4

Verdict:

input
499 5
497 498 499 496 495 494 493 49...

correct output
YES
30886
3 7 11 15 19 23 27 31 35 39 43...

user output
NO

Test 34

Group: 4

Verdict:

input
500 5
499 500 497 498 495 496 493 49...

correct output
YES
30919
1 4 8 12 16 20 24 28 32 36 40 ...

user output
NO