如何更快地读取数据?

嗯...有点难以找到一种方法来更快地读取/写入数据,以便在使用F#的问题(https://www.spoj.pl/problems/INTEST/)中获得ACCEPTED。 我的代码(http://paste.ubuntu.com/548748/)获得TLE ... 有任何想法如何加快数据阅读速度?     
已邀请:
我的这个版本通过了时间限制(但仍然非常慢~14秒):
open System
open System.IO

// need to change standard buffer, not to add an additional one
let stream = new StreamReader(Console.OpenStandardInput(4096))

let stdin = Seq.unfold (fun s -> if s = null then None else Some (s,stream.ReadLine())) <| stream.ReadLine()

let inline s2i (s : string) = Array.fold (fun a d -> a*10u + (uint32 d - uint32 '0') ) 0u <| s.ToCharArray()

let calc = 
    let fl = Seq.head stdin
    let [|_;ks|] = fl.Split(' ')
    let k = uint32 ks
    Seq.fold (fun a s -> if (s2i s) % k = 0u then a+1 else a) 0 <| Seq.skip 1 stdin

printf "%A" calc
虽然这个版本的瓶颈实际上是
string -> uint32
转换(标准uint32从字符串转换得更慢),但我的样本输入(~100M文件)读取本身大约需要2秒(相当于总时间的6秒) - 仍然不是好结果。一旦impe2ѭ以命令式重写,总的运行时间可以减少到10秒:
let inline s2i (s : string) =
    let mutable a = 0u
    for i in 0..s.Length-1 do a <- a*10u + uint32 (s.Chars(i)) - uint32 '0'
    a
    
我实际上并不知道,但我猜想一次读一个字符是不好的,你应该阅读,例如一次4k进缓冲区然后处理缓冲区。     
let buf =
    let raw = System.Console.OpenStandardInput()
    let bytebuf = new System.IO.BufferedStream(raw)
    new System.IO.StreamReader(bytebuf)

buf.Read()     // retrieves a single character as an int from the buffer
buf.ReadLine() // retrieves a whole line from the buffer
    

要回复问题请先登录注册