文章

5

粉丝

176

获赞

6

访问

25.5k

头像
火车票订购,c++,简单模拟
P1458 中国科学技术大学机试题
发布于2022年9月28日 11:00
阅读数 7.0k

就是一个模拟吧,没什么好说的

#include <bits/stdc++.h>
#define IOS ios::sync_with_stdio(false);cin.tie(0);
#define x first
#define y second
#define all(x) x.begin(),x.end()

using namespace std;

typedef pair<int,int> PII;

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

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发