2013-06-16 15:54:08 -05:00
|
|
|
// Copyright 2012-2013 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-20 19:07:24 -05:00
|
|
|
use std::from_str::FromStr;
|
2013-05-24 21:35:29 -05:00
|
|
|
use std::os;
|
|
|
|
use std::vec;
|
2012-12-10 19:32:48 -06:00
|
|
|
|
2013-04-16 18:11:16 -05:00
|
|
|
#[inline]
|
|
|
|
fn A(i: i32, j: i32) -> i32 {
|
|
|
|
(i+j) * (i+j+1) / 2 + i + 1
|
|
|
|
}
|
2012-02-08 03:05:53 -06:00
|
|
|
|
2013-04-16 18:11:16 -05:00
|
|
|
fn dot(v: &[f64], u: &[f64]) -> f64 {
|
|
|
|
let mut sum = 0.0;
|
2013-08-03 11:45:23 -05:00
|
|
|
for (i, &v_i) in v.iter().enumerate() {
|
2013-04-16 18:11:16 -05:00
|
|
|
sum += v_i * u[i];
|
|
|
|
}
|
|
|
|
sum
|
2012-02-08 03:05:53 -06:00
|
|
|
}
|
|
|
|
|
2013-04-16 18:11:16 -05:00
|
|
|
fn mult_Av(v: &mut [f64], out: &mut [f64]) {
|
2013-08-03 11:45:23 -05:00
|
|
|
for (i, out_i) in out.mut_iter().enumerate() {
|
2013-04-16 18:11:16 -05:00
|
|
|
let mut sum = 0.0;
|
2013-08-03 11:45:23 -05:00
|
|
|
for (j, &v_j) in v.mut_iter().enumerate() {
|
2013-04-16 18:11:16 -05:00
|
|
|
sum += v_j / (A(i as i32, j as i32) as f64);
|
2012-02-08 03:05:53 -06:00
|
|
|
}
|
2013-04-16 18:11:16 -05:00
|
|
|
*out_i = sum;
|
2012-02-08 03:05:53 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-16 18:11:16 -05:00
|
|
|
fn mult_Atv(v: &mut [f64], out: &mut [f64]) {
|
2013-08-03 11:45:23 -05:00
|
|
|
for (i, out_i) in out.mut_iter().enumerate() {
|
2013-04-16 18:11:16 -05:00
|
|
|
let mut sum = 0.0;
|
2013-08-03 11:45:23 -05:00
|
|
|
for (j, &v_j) in v.mut_iter().enumerate() {
|
2013-04-16 18:11:16 -05:00
|
|
|
sum += v_j / (A(j as i32, i as i32) as f64);
|
2012-02-08 03:05:53 -06:00
|
|
|
}
|
2013-04-16 18:11:16 -05:00
|
|
|
*out_i = sum;
|
2012-02-08 03:05:53 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-16 18:11:16 -05:00
|
|
|
fn mult_AtAv(v: &mut [f64], out: &mut [f64], tmp: &mut [f64]) {
|
|
|
|
mult_Av(v, tmp);
|
|
|
|
mult_Atv(tmp, out);
|
2012-02-08 03:05:53 -06:00
|
|
|
}
|
|
|
|
|
2013-04-16 18:11:16 -05:00
|
|
|
#[fixed_stack_segment]
|
2012-10-03 21:16:27 -05:00
|
|
|
fn main() {
|
2013-04-16 18:11:16 -05:00
|
|
|
let n: uint = FromStr::from_str(os::args()[1]).get();
|
2013-06-04 23:43:41 -05:00
|
|
|
let mut u = vec::from_elem(n, 1f64);
|
|
|
|
let mut v = u.clone();
|
|
|
|
let mut tmp = u.clone();
|
2013-07-31 21:18:19 -05:00
|
|
|
do 8.times {
|
2013-04-16 18:11:16 -05:00
|
|
|
mult_AtAv(u, v, tmp);
|
|
|
|
mult_AtAv(v, u, tmp);
|
2012-02-08 03:05:53 -06:00
|
|
|
}
|
|
|
|
|
2013-07-22 11:04:51 -05:00
|
|
|
printfln!("%.9f", (dot(u,v) / dot(v,v)).sqrt() as float);
|
2012-02-08 03:05:53 -06:00
|
|
|
}
|