跳转至

OJ生成数据模板

生成输入

 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
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <ctime>
#include <algorithm>
#include <cmath>
#include <random>

using namespace std;

const int N = 100010;
const int MOD = 1001;
const int GROUP_NUM = 10;

fstream fp1, fp2;

string getname(int i, string a) {
    stringstream ss;
    ss << i << a;
    return ss.str();
}

int main() {
    srand((unsigned)time(NULL));

    for (int ce = 1; ce <= 10; ce++) {
        string name1, name2;
        name1 = getname(ce, ".in");
        name2 = getname(ce, ".out");

        fp1.open(name1, ios::out);
        fp2.open(name2, ios::out);

        // TODO

        // for (int i = 1; i <= n; i++) {   // 随机数据生成
        //  int mn = 1, mx = w * 5 / 4;
        //  random_device seed;//硬件生成随机数种子
        //  ranlux48 engine(seed());//利用种子生成随机数引擎
        //  uniform_int_distribution<> distrib(mn, mx);//设置随机数范围,并为均匀分布
        //  c[i] = distrib(engine);//随机数
        // }

        // random_shuffle(tmp + 1, tmp + n + 1); // 随机打乱全排列

        fp1.close();
        fp2.close();
    }

    return 0;
}

生成答案

 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
#include <bits/stdc++.h>
using namespace std;

const int N = 10010;

fstream fp1, fp2;

string getname(int i, string a) {
    stringstream ss;
    ss << i << a;
    return ss.str();
}

int main() {
    for (int ce = 1; ce <= 10; ce ++) {
        string name1, name2;
        name1 = getname(ce, ".in");
        name2 = getname(ce, ".out");

        fp1.open(name1);
        fp2.open(name2, ios::out);

        // TODO

        fp1.close();
        fp2.close();
    }

    return 0;
}
回到页面顶部