2012-07-06 20:20:36 -05:00
|
|
|
// chameneos
|
|
|
|
|
|
|
|
import io::reader_util;
|
|
|
|
|
|
|
|
use std;
|
|
|
|
import std::map;
|
|
|
|
import std::map::hashmap;
|
|
|
|
import std::sort;
|
|
|
|
|
|
|
|
fn print_complements() {
|
|
|
|
let all = ~[Blue, Red, Yellow];
|
|
|
|
for vec::each(all) |aa| {
|
|
|
|
for vec::each(all) |bb| {
|
2012-07-14 00:57:48 -05:00
|
|
|
io::println(show_color(aa) + ~" + " + show_color(bb) +
|
|
|
|
~" -> " + show_color(transform(aa,bb)));
|
2012-07-06 20:20:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-07 23:43:12 -05:00
|
|
|
enum color { Red, Yellow, Blue }
|
2012-07-06 20:20:36 -05:00
|
|
|
|
|
|
|
type creature_info = { name: uint, color: color };
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn show_color(cc: color) -> ~str {
|
2012-07-06 20:20:36 -05:00
|
|
|
alt (cc) {
|
2012-08-03 21:59:04 -05:00
|
|
|
Red => {~"red"}
|
|
|
|
Yellow => {~"yellow"}
|
|
|
|
Blue => {~"blue"}
|
2012-07-06 20:20:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn show_color_list(set: ~[color]) -> ~str {
|
|
|
|
let mut out = ~"";
|
2012-07-06 20:20:36 -05:00
|
|
|
for vec::eachi(set) |_ii, col| {
|
2012-07-14 00:57:48 -05:00
|
|
|
out += ~" ";
|
2012-07-06 20:20:36 -05:00
|
|
|
out += show_color(col);
|
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return out;
|
2012-07-06 20:20:36 -05:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn show_digit(nn: uint) -> ~str {
|
2012-07-06 20:20:36 -05:00
|
|
|
alt (nn) {
|
2012-08-03 21:59:04 -05:00
|
|
|
0 => {~"zero"}
|
|
|
|
1 => {~"one"}
|
|
|
|
2 => {~"two"}
|
|
|
|
3 => {~"three"}
|
|
|
|
4 => {~"four"}
|
|
|
|
5 => {~"five"}
|
|
|
|
6 => {~"six"}
|
|
|
|
7 => {~"seven"}
|
|
|
|
8 => {~"eight"}
|
|
|
|
9 => {~"nine"}
|
|
|
|
_ => {fail ~"expected digits from 0 to 9..."}
|
2012-07-06 20:20:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn show_number(nn: uint) -> ~str {
|
|
|
|
let mut out = ~"";
|
2012-07-06 20:20:36 -05:00
|
|
|
let mut num = nn;
|
|
|
|
let mut dig;
|
|
|
|
|
|
|
|
if num == 0 { out = show_digit(0) };
|
|
|
|
|
|
|
|
while num != 0 {
|
|
|
|
dig = num % 10;
|
|
|
|
num = num / 10;
|
2012-07-14 00:57:48 -05:00
|
|
|
out = show_digit(dig) + ~" " + out;
|
2012-07-06 20:20:36 -05:00
|
|
|
}
|
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return out;
|
2012-07-06 20:20:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn transform(aa: color, bb: color) -> color {
|
|
|
|
alt (aa, bb) {
|
2012-08-03 21:59:04 -05:00
|
|
|
(Red, Red ) => { Red }
|
|
|
|
(Red, Yellow) => { Blue }
|
|
|
|
(Red, Blue ) => { Yellow }
|
|
|
|
(Yellow, Red ) => { Blue }
|
|
|
|
(Yellow, Yellow) => { Yellow }
|
|
|
|
(Yellow, Blue ) => { Red }
|
|
|
|
(Blue, Red ) => { Yellow }
|
|
|
|
(Blue, Yellow) => { Red }
|
|
|
|
(Blue, Blue ) => { Blue }
|
2012-07-06 20:20:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn creature(
|
|
|
|
name: uint,
|
|
|
|
color: color,
|
|
|
|
from_rendezvous: comm::port<option<creature_info>>,
|
|
|
|
to_rendezvous: comm::chan<creature_info>,
|
2012-07-14 00:57:48 -05:00
|
|
|
to_rendezvous_log: comm::chan<~str>
|
2012-07-06 20:20:36 -05:00
|
|
|
) {
|
|
|
|
let mut color = color;
|
|
|
|
let mut creatures_met = 0;
|
|
|
|
let mut evil_clones_met = 0;
|
|
|
|
|
|
|
|
loop {
|
|
|
|
// ask for a pairing
|
|
|
|
comm::send(to_rendezvous, {name: name, color: color});
|
|
|
|
let resp = comm::recv(from_rendezvous);
|
|
|
|
|
|
|
|
// log and change, or print and quit
|
|
|
|
alt resp {
|
2012-08-03 21:59:04 -05:00
|
|
|
option::some(other_creature) => {
|
2012-07-06 20:20:36 -05:00
|
|
|
color = transform(color, other_creature.color);
|
|
|
|
|
|
|
|
// track some statistics
|
|
|
|
creatures_met += 1;
|
|
|
|
if other_creature.name == name {
|
|
|
|
evil_clones_met += 1;
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
option::none => {
|
2012-07-06 20:20:36 -05:00
|
|
|
// log creatures met and evil clones of self
|
2012-07-30 18:01:07 -05:00
|
|
|
let report = fmt!{"%u", creatures_met} + ~" " +
|
2012-07-06 20:20:36 -05:00
|
|
|
show_number(evil_clones_met);
|
|
|
|
comm::send(to_rendezvous_log, report);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rendezvous(nn: uint, set: ~[color]) {
|
2012-07-07 23:43:12 -05:00
|
|
|
// these ports will allow us to hear from the creatures
|
2012-07-06 20:20:36 -05:00
|
|
|
let from_creatures: comm::port<creature_info> = comm::port();
|
2012-07-14 00:57:48 -05:00
|
|
|
let from_creatures_log: comm::port<~str> = comm::port();
|
2012-07-07 23:43:12 -05:00
|
|
|
|
|
|
|
// these channels will be passed to the creatures so they can talk to us
|
2012-07-06 20:20:36 -05:00
|
|
|
let to_rendezvous = comm::chan(from_creatures);
|
|
|
|
let to_rendezvous_log = comm::chan(from_creatures_log);
|
2012-07-07 23:43:12 -05:00
|
|
|
|
|
|
|
// these channels will allow us to talk to each creature by 'name'/index
|
2012-07-06 20:20:36 -05:00
|
|
|
let to_creature: ~[comm::chan<option<creature_info>>] =
|
|
|
|
vec::mapi(set,
|
|
|
|
fn@(ii: uint, col: color) -> comm::chan<option<creature_info>> {
|
2012-07-07 23:43:12 -05:00
|
|
|
// create each creature as a listener with a port, and
|
|
|
|
// give us a channel to talk to each
|
2012-08-01 19:30:05 -05:00
|
|
|
return do task::spawn_listener |from_rendezvous| {
|
2012-07-06 20:20:36 -05:00
|
|
|
creature(ii, col, from_rendezvous, to_rendezvous,
|
|
|
|
to_rendezvous_log);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
let mut creatures_met = 0;
|
|
|
|
|
|
|
|
// set up meetings...
|
2012-07-07 23:43:12 -05:00
|
|
|
for nn.times {
|
|
|
|
let fst_creature: creature_info = comm::recv(from_creatures);
|
|
|
|
let snd_creature: creature_info = comm::recv(from_creatures);
|
|
|
|
|
|
|
|
creatures_met += 2;
|
|
|
|
|
|
|
|
comm::send(to_creature[fst_creature.name], some(snd_creature));
|
|
|
|
comm::send(to_creature[snd_creature.name], some(fst_creature));
|
2012-07-06 20:20:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// tell each creature to stop
|
|
|
|
for vec::eachi(to_creature) |_ii, to_one| {
|
|
|
|
comm::send(to_one, none);
|
|
|
|
}
|
|
|
|
|
|
|
|
// save each creature's meeting stats
|
|
|
|
let mut report = ~[];
|
|
|
|
for vec::each(to_creature) |_to_one| {
|
|
|
|
vec::push(report, comm::recv(from_creatures_log));
|
|
|
|
}
|
|
|
|
|
|
|
|
// print each color in the set
|
|
|
|
io::println(show_color_list(set));
|
|
|
|
|
|
|
|
// print each creature's stats
|
|
|
|
for vec::each(report) |rep| {
|
|
|
|
io::println(rep);
|
|
|
|
}
|
|
|
|
|
|
|
|
// print the total number of creatures met
|
|
|
|
io::println(show_number(creatures_met));
|
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn main(args: ~[~str]) {
|
|
|
|
let args = if os::getenv(~"RUST_BENCH").is_some() {
|
|
|
|
~[~"", ~"200000"]
|
2012-07-08 00:39:23 -05:00
|
|
|
} else if args.len() <= 1u {
|
2012-07-14 00:57:48 -05:00
|
|
|
~[~"", ~"600"]
|
2012-07-06 20:20:36 -05:00
|
|
|
} else {
|
|
|
|
args
|
|
|
|
};
|
|
|
|
|
|
|
|
let nn = uint::from_str(args[1]).get();
|
|
|
|
|
|
|
|
print_complements();
|
2012-07-14 00:57:48 -05:00
|
|
|
io::println(~"");
|
2012-07-06 20:20:36 -05:00
|
|
|
|
|
|
|
rendezvous(nn, ~[Blue, Red, Yellow]);
|
2012-07-14 00:57:48 -05:00
|
|
|
io::println(~"");
|
2012-07-06 20:20:36 -05:00
|
|
|
|
|
|
|
rendezvous(nn,
|
|
|
|
~[Blue, Red, Yellow, Red, Yellow, Blue, Red, Yellow, Red, Blue]);
|
|
|
|
}
|
|
|
|
|