2014-02-05 16:33:10 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
use std::os;
|
2014-03-08 17:11:52 -06:00
|
|
|
use std::slice;
|
2013-04-17 16:19:25 -05:00
|
|
|
|
|
|
|
fn max(a: i32, b: i32) -> i32 {
|
|
|
|
if a > b {
|
|
|
|
a
|
|
|
|
} else {
|
|
|
|
b
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fannkuch_redux(n: i32) -> i32 {
|
2014-03-08 17:11:52 -06:00
|
|
|
let mut perm = slice::from_elem(n as uint, 0i32);
|
|
|
|
let mut perm1 = slice::from_fn(n as uint, |i| i as i32);
|
|
|
|
let mut count = slice::from_elem(n as uint, 0i32);
|
2013-06-04 23:43:41 -05:00
|
|
|
let mut max_flips_count = 0i32;
|
|
|
|
let mut perm_count = 0i32;
|
|
|
|
let mut checksum = 0i32;
|
2013-04-17 16:19:25 -05:00
|
|
|
|
|
|
|
let mut r = n;
|
|
|
|
loop {
|
2014-02-21 17:41:51 -06:00
|
|
|
while r != 1 {
|
2014-04-01 22:39:26 -05:00
|
|
|
count[r as uint - 1] = r;
|
2014-02-21 17:41:51 -06:00
|
|
|
r -= 1;
|
|
|
|
}
|
2013-04-17 16:19:25 -05:00
|
|
|
|
2014-02-21 17:41:51 -06:00
|
|
|
for (perm_i, perm1_i) in perm.mut_iter().zip(perm1.iter()) {
|
|
|
|
*perm_i = *perm1_i;
|
|
|
|
}
|
2013-04-17 16:19:25 -05:00
|
|
|
|
2014-02-21 17:41:51 -06:00
|
|
|
let mut flips_count: i32 = 0;
|
|
|
|
let mut k: i32;
|
|
|
|
loop {
|
|
|
|
k = perm[0];
|
|
|
|
if k == 0 {
|
|
|
|
break;
|
2013-04-17 16:19:25 -05:00
|
|
|
}
|
|
|
|
|
2014-02-21 17:41:51 -06:00
|
|
|
let k2 = (k+1) >> 1;
|
|
|
|
for i in range(0i32, k2) {
|
|
|
|
perm.swap(i as uint, (k - i) as uint);
|
|
|
|
}
|
|
|
|
flips_count += 1;
|
|
|
|
}
|
2013-04-17 16:19:25 -05:00
|
|
|
|
2014-02-21 17:41:51 -06:00
|
|
|
max_flips_count = max(max_flips_count, flips_count);
|
|
|
|
checksum += if perm_count % 2 == 0 {
|
|
|
|
flips_count
|
|
|
|
} else {
|
|
|
|
-flips_count
|
|
|
|
};
|
2013-04-17 16:19:25 -05:00
|
|
|
|
2014-02-21 17:41:51 -06:00
|
|
|
// Use incremental change to generate another permutation.
|
|
|
|
loop {
|
|
|
|
if r == n {
|
|
|
|
println!("{}", checksum);
|
|
|
|
return max_flips_count;
|
|
|
|
}
|
2013-04-17 16:19:25 -05:00
|
|
|
|
2014-02-21 17:41:51 -06:00
|
|
|
let perm0 = perm1[0];
|
|
|
|
let mut i: i32 = 0;
|
|
|
|
while i < r {
|
|
|
|
let j = i + 1;
|
2014-04-01 22:39:26 -05:00
|
|
|
perm1[i as uint] = perm1[j as uint];
|
2014-02-21 17:41:51 -06:00
|
|
|
i = j;
|
2013-04-17 16:19:25 -05:00
|
|
|
}
|
2014-04-01 22:39:26 -05:00
|
|
|
perm1[r as uint] = perm0;
|
2013-04-17 16:19:25 -05:00
|
|
|
|
2014-04-01 22:39:26 -05:00
|
|
|
count[r as uint] -= 1;
|
|
|
|
if count[r as uint] > 0 {
|
2014-02-21 17:41:51 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
r += 1;
|
2013-04-17 16:19:25 -05:00
|
|
|
}
|
2014-02-21 17:41:51 -06:00
|
|
|
|
|
|
|
perm_count += 1;
|
2013-04-17 16:19:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2014-02-21 17:41:51 -06:00
|
|
|
let args = os::args();
|
|
|
|
let n = if args.len() > 1 {
|
|
|
|
from_str::<i32>(args[1]).unwrap()
|
|
|
|
} else {
|
|
|
|
2
|
|
|
|
};
|
2013-09-25 00:16:43 -05:00
|
|
|
println!("Pfannkuchen({}) = {}", n as int, fannkuch_redux(n) as int);
|
2013-04-17 16:19:25 -05:00
|
|
|
}
|