comp_io/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
//! # Comp IO
//!
//! `comp_io` is a collection of utilities centered around the `Reader` struct
//! to make competitive programming easier to write
use std::io::{self, Read};
/// Reads data from stdin in an optimized manner
///
/// Limitations: doesn't skip whitespace. Assumes that input data is sanitized (each number is separated by exactly 1 character)
/// This allows for faster reading of data, because in most competitive programming scenarios, the input data is already provided
/// in such a way
///
/// # Example:
///
/// ```no_run
/// let mut reader = comp_io::Reader::new();
///
/// // Read an i32:
/// let a: i32 = reader.next_i32().unwrap();
///
/// // Read a pair of i32s:
/// let (b, c): (i32, i32) = reader.next_pair().unwrap();
///
/// // Read an f64
/// let d: f64 = reader.next_f64().unwrap();
/// ```
pub struct Reader {
buffer: Vec<u8>,
index: usize,
len: usize,
}
// ___ _________________
// / .\ / \
// / =__| < Walrus Approved.|
// hjm / || \_________________/
impl Iterator for Reader {
type Item = u8;
#[cfg(not(test))]
fn next(&mut self) -> Option<Self::Item> {
// If at end of buffer
if self.index >= self.len {
// Try to read from stdin
self.buffer.clear(); // necessary?
self.len = io::stdin()
.lock()
.take(400_000)
.read_to_end(&mut self.buffer)
.ok()?;
self.index = 0;
}
let n = self.buffer[self.index];
self.index += 1;
Some(n)
}
#[cfg(test)]
fn next(&mut self) -> Option<Self::Item> {
// If at end of buffer
if self.index >= self.len {
return None;
}
let n = self.buffer[self.index];
self.index += 1;
Some(n)
}
}
impl Reader {
/// Instantiates a new reader
///
/// # Example:
///
/// ```
/// let mut reader = comp_io::Reader::new();
/// ```
pub fn new() -> Self {
Reader {
buffer: Vec::<u8>::with_capacity(400_000),
index: 0,
len: 0,
}
}
/// Useful for testing reader without requiring access to stdin
///
/// Note: Best with `cargo test`, otherwise still needs stdin
///
/// # Example:
///
/// ```
/// let mut reader = comp_io::Reader::from_str("12 43\n-42");
/// ```
pub fn from_str(input: &str) -> Self {
Reader {
buffer: input.as_bytes().to_vec(),
index: 0,
len: input.len(),
}
}
fn read_i32(&mut self) -> Option<(i32, i32)> {
let (mut r, mut val, neg) = (0,48,self.next()? == 45);
self.index -= if neg {0} else {1};
while val >= 48 && val <= 57 {
r = r * 10 + val - 48;
val = match self.next() {
Some(a) => a as i32,
_ => break,
};
}
Some((if neg {-r} else {r}, val))
}
/// Reads the next u32 from stdin
pub fn next_u32(&mut self) -> Option<u32> {
Some(self.read_i32()?.0.unsigned_abs())
}
/// Reads the next usize from stdin
pub fn next_usize(&mut self) -> Option<usize> {
Some(self.read_i32()?.0.unsigned_abs() as usize)
}
/// Reads the next i32 from stdin
pub fn next_i32(&mut self) -> Option<i32> {
Some(self.read_i32()?.0)
}
/// Reads the next char from stdin
pub fn next_char(&mut self) -> Option<char> {
Some(self.next()? as char)
}
/// Reads the next pair of i32s from stdin
pub fn next_pair(&mut self) -> Option<(i32, i32)> {
Some((self.read_i32()?.0, self.read_i32()?.0))
}
/// Reads the next f64 from stdin
pub fn next_f64(&mut self) -> Option<f64> {
let (base, last) = self.read_i32()?;
let base: f64 = base as f64;
if last != 46 { // don't have a period
return Some(base as f64);
}
let (mut dec, mut val, mut ten) = (0.0, 48, 1.0);
while val >= 48 && val <= 57 {
dec += ((val - 48) as f64) * ten;
ten *= 0.1;
val = match self.next() {
Some(a) => a,
_ => break,
};
}
Some(base + dec.copysign(base))
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_reader_from_str() {
let reader = Reader::from_str("-4.1");
assert_eq!(reader.buffer, vec![45, 52, 46, 49]);
assert_eq!(reader.index, 0);
assert_eq!(reader.len, 4);
}
#[test]
fn test_next_f64() {
let mut reader = Reader::from_str("-4 45 -754.3 32. 45");
assert_eq!(reader.next_f64().unwrap(), -4.);
assert_eq!(reader.next_f64().unwrap(), 45.);
assert_eq!(reader.next_f64().unwrap(), -754.3);
assert_eq!(reader.next_f64().unwrap(), 32.);
assert_eq!(reader.next_f64().unwrap(), 45.);
}
#[test]
fn test_next_char() {
let mut reader = Reader::from_str("ab cd");
assert_eq!(reader.next_char().unwrap(), 'a');
assert_eq!(reader.next_char().unwrap(), 'b');
assert_eq!(reader.next_char().unwrap(), ' ');
assert_eq!(reader.next_char().unwrap(), 'c');
assert_eq!(reader.next_char().unwrap(), 'd');
}
#[test]
fn test_next_pair() {
let mut reader = Reader::from_str("23 32\n12 -34 57 97\n-12 3");
assert_eq!(reader.next_pair().unwrap(), (23, 32));
assert_eq!(reader.next_pair().unwrap(), (12, -34));
assert_eq!(reader.next_pair().unwrap(), (57, 97));
assert_eq!(reader.next_pair().unwrap(), (-12, 3));
}
#[test]
fn test_next_usize() {
let mut reader = Reader::from_str("23 32\n12\n34");
assert_eq!(reader.next_usize().unwrap(), 23);
assert_eq!(reader.next_usize().unwrap(), 32);
assert_eq!(reader.next_usize().unwrap(), 12);
assert_eq!(reader.next_usize().unwrap(), 34);
}
}