inline int read()
{
    char c = getchar(); int x = 0, f = 1;
    while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
    while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
    return x * f;
}

据说在读入大数据的时候很快 不过只能读整数
然后再记一串代码

    ios::sync_with_stdio(false);

可以取消cin和stdin同步 有效的加快cin的读入速度