QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#693493#9519. Build a ComputerAmiyaCastAC ✓3ms7832kbC++204.0kb2024-10-31 16:16:252024-10-31 16:16:36

Judging History

This is the latest submission verdict.

  • [2024-10-31 16:16:36]
  • Judged
  • Verdict: AC
  • Time: 3ms
  • Memory: 7832kb
  • [2024-10-31 16:16:25]
  • Submitted

answer

#include<bits/stdc++.h>
#define endl '\n'
#define ll long long
#define pii pair<int, int>
const ll inf = 1145141919810;
using namespace std;
const int N = 1e6 + 7;
vector<pii> g[N + 1];
int tot = 30;
int s = 100;
int in[N], pos[N];

const int M = 40;
int id[N];
void print() {
    int cnt = 0;
    for(int i = 30; i >= 1; --i) {
        if(in[i] >= 1) {
            for(int j = i - 1; j >= 1; --j) {
                g[j + 1].push_back({j, 1});
                g[j + 1].push_back({j, 0});
            }
            break;
        }
    }


    for(int i = 100; i >= 1; --i) {
        if(g[i].size() || i == 1) {
            id[++cnt] = i;
            pos[i] = cnt;
        }
    }

    // for(int i = 1; i <= cnt; ++i) {
    //     cout << id[i] << endl;
    // }

    cout << cnt << endl;
    for(int i = 1; i <= cnt; ++i) {
        // cout << "id_i = " << id[i] << endl;
        cout << g[id[i]].size() << " ";
        for(auto[x, y] : g[id[i]]) {
            cout << pos[x] << " " << y << " ";
        }
        cout << endl;
    }
    
}
void pprint(){
    for(int i = 1; i <= 100; ++i) {
        if(g[i].size()) {
            cout << "i = " << i << endl;
            for(auto [x, y]:g[i]) {
                cout << x << " " << y << endl;
            }
        }
    }
}
void slv(){
    ll l, r;
    cin >> l >> r;
    // int tot = 0;
    
    int w = -1, F = 0;
    for(int j = M; j >= 0; --j) {
        if(r >> j & 1) {//最高位是j
            if(l >> j & 1) {
                if(j == 0) g[s].push_back({1, 1});
                else g[s].push_back({++tot, 1});
                s = tot;
            } else {
                //分叉
                w = j;//在第j位分叉
                break;
            }
            F = 1;
        } else {
            if(F == 1) {
                g[s].push_back({++tot, 0});
                s = tot;
            }
        }
    }

    // cout << "s = " << s << endl;

    if(w == -1) {//没有分叉 只有一个数
        print();
        return ;
    }
    
    if(w == 0) {
        // cout << "S = " << s << endl;
        g[s].push_back({1, 0});
        g[s].push_back({1, 1});
        print();
        return ;
    }

    // cout << "w = " << w << endl;

    //1的部分

    int now = s;
    g[now].push_back({++tot, 1});
    now = tot;

    for(int i = w - 1; i >= 1; --i) {
        if(r >> i & 1) {//0是满的
            g[now].push_back({i + 1, 0});
            in[i + 1] = 1;
            g[now].push_back({++tot, 1});
            now = tot;
        } else {
            g[now].push_back({++tot, 0});
            now = tot;
        }
    }

    // cout << "now = " << now << endl;
    if(r >> 0 & 1) {
        g[now].push_back({1, 0});
        g[now].push_back({1, 1});
    } else {
        g[now].push_back({1, 0});
    }

    // cout << "now = " << now << endl;
    int f = (s == 100 ? 0 : 1);
    now = s;//搞是0的部分
    if(f) {
        g[now].push_back({++tot, 0});
        now = tot;
    }

    // cout << "now = " << now << endl;
    // cout << "f = " << f << endl;
    for(int i = w - 1; i >= 1; --i) {
        if(!(l >> i & 1)) {//1是满的
            // cout << "1_now = " << now << endl;
            g[now].push_back({i + 1, 1});
            in[i + 1] = 1;

            if(f) {
                g[now].push_back({++tot, 0});
                now = tot;
            }
        } else {
            g[now].push_back({++tot, 1}); 
            f = 1;
            now = tot;
        }
    }
    // cout << "now = " << now << endl;
    if(!(l >> 0 & 1)) {
        g[now].push_back({1, 1});
        g[now].push_back({1, 0});
    } else {
        g[now].push_back({1, 1});
    }
    // pprint();
    print();
    // pprint();
}

int main(){
    //ios::sync_with_stdio(0), cin.tie(0);
    int _ = 1;
    //cin >> _;
    while(_--) slv();
    return 0;
}
/*
5 7
*/
/*
3 7
*/
/*

1111 0100 0010 0100 0000
0000 0000 0000 0000 0001

*/

这程序好像有点Bug,我给组数据试试?

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 5752kb

input:

5 7

output:

5
1 4 1 
1 5 1 
2 5 0 5 1 
2 3 1 2 0 
0 

result:

ok ok

Test #2:

score: 0
Accepted
time: 2ms
memory: 7756kb

input:

10 27

output:

12
2 8 1 4 1 
2 12 1 12 0 
1 2 1 
2 10 1 3 0 
2 12 0 12 1 
2 11 0 5 1 
1 6 0 
2 9 0 7 1 
2 10 1 10 0 
2 11 1 11 0 
2 12 1 12 0 
0 

result:

ok ok

Test #3:

score: 0
Accepted
time: 2ms
memory: 7804kb

input:

5 13

output:

9
2 6 1 3 1 
1 9 1 
2 8 1 2 0 
2 9 0 9 1 
1 4 0 
2 7 0 5 1 
2 8 1 8 0 
2 9 1 9 0 
0 

result:

ok ok

Test #4:

score: 0
Accepted
time: 0ms
memory: 7832kb

input:

1 1000000

output:

39
20 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 
1 39 0 
1 2 0 
1 3 0 
1 4 0 
1 5 0 
1 6 0 
2 33 0 7 1 
1 8 0 
1 9 0 
2 30 0 10 1 
1 11 0 
1 12 0 
1 13 0 
1 14 0 
2 25 0 15 1 
1 16 0 
2 23 0 17 1 
2 22 0 18 1 
2 21 0 19 1 
2 22 1 22 0 
2 23 1...

result:

ok ok

Test #5:

score: 0
Accepted
time: 2ms
memory: 5756kb

input:

1 1

output:

2
1 2 1 
0 

result:

ok ok

Test #6:

score: 0
Accepted
time: 2ms
memory: 5772kb

input:

7 9

output:

7
2 6 1 3 1 
1 7 1 
1 2 1 
2 7 0 7 1 
1 4 0 
1 5 0 
0 

result:

ok ok

Test #7:

score: 0
Accepted
time: 2ms
memory: 7804kb

input:

3 7

output:

6
2 4 1 2 1 
1 6 1 
2 6 0 6 1 
2 5 0 3 1 
2 6 1 6 0 
0 

result:

ok ok

Test #8:

score: 0
Accepted
time: 2ms
memory: 7756kb

input:

1 5

output:

5
3 3 1 4 1 5 1 
2 5 0 5 1 
1 2 0 
2 5 1 5 0 
0 

result:

ok ok

Test #9:

score: 0
Accepted
time: 0ms
memory: 7680kb

input:

1 4

output:

5
3 3 1 4 1 5 1 
1 5 0 
1 2 0 
2 5 1 5 0 
0 

result:

ok ok

Test #10:

score: 0
Accepted
time: 1ms
memory: 5632kb

input:

8 9

output:

5
1 4 1 
2 5 0 5 1 
1 2 0 
1 3 0 
0 

result:

ok ok

Test #11:

score: 0
Accepted
time: 0ms
memory: 7672kb

input:

7 51

output:

13
4 8 1 9 1 10 1 3 1 
1 13 1 
1 2 1 
2 13 0 13 1 
2 12 0 4 1 
1 5 0 
1 6 0 
2 9 0 7 1 
2 10 1 10 0 
2 11 1 11 0 
2 12 1 12 0 
2 13 1 13 0 
0 

result:

ok ok

Test #12:

score: 0
Accepted
time: 2ms
memory: 7680kb

input:

51 79

output:

16
2 12 1 6 1 
1 16 1 
1 2 1 
2 14 1 3 0 
2 13 1 4 0 
1 5 1 
2 16 0 16 1 
2 15 0 7 1 
2 14 0 8 1 
2 13 0 9 1 
1 10 0 
1 11 0 
2 14 1 14 0 
2 15 1 15 0 
2 16 1 16 0 
0 

result:

ok ok

Test #13:

score: 0
Accepted
time: 0ms
memory: 7744kb

input:

92 99

output:

14
1 12 1 
2 14 1 14 0 
2 13 1 2 0 
1 3 1 
1 4 1 
1 5 1 
2 14 0 14 1 
2 13 0 7 1 
1 8 0 
1 9 0 
1 10 0 
2 11 1 6 0 
2 14 1 14 0 
0 

result:

ok ok

Test #14:

score: 0
Accepted
time: 2ms
memory: 7680kb

input:

27 36

output:

13
2 10 1 5 1 
1 13 1 
1 2 1 
2 11 1 3 0 
1 4 1 
1 13 0 
1 6 0 
2 11 0 7 1 
1 8 0 
1 9 0 
2 12 1 12 0 
2 13 1 13 0 
0 

result:

ok ok

Test #15:

score: 0
Accepted
time: 3ms
memory: 7800kb

input:

55 84

output:

17
2 12 1 6 1 
1 17 1 
1 2 1 
1 3 1 
2 14 1 4 0 
1 5 1 
1 17 0 
1 7 0 
2 15 0 8 1 
1 9 0 
2 13 0 10 1 
1 11 0 
2 14 1 14 0 
2 15 1 15 0 
2 16 1 16 0 
2 17 1 17 0 
0 

result:

ok ok

Test #16:

score: 0
Accepted
time: 2ms
memory: 7744kb

input:

297208 929600

output:

57
2 38 1 19 1 
2 57 1 57 0 
2 56 1 2 0 
2 55 1 3 0 
1 4 1 
1 5 1 
1 6 1 
1 7 1 
1 8 1 
2 49 1 9 0 
2 48 1 10 0 
2 47 1 11 0 
1 12 1 
2 45 1 13 0 
2 44 1 14 0 
2 43 1 15 0 
1 16 1 
2 41 1 17 0 
2 40 1 18 0 
1 57 0 
1 20 0 
1 21 0 
1 22 0 
1 23 0 
1 24 0 
2 51 0 25 1 
1 26 0 
2 49 0 27 1 
2 48 0 28 1...

result:

ok ok

Test #17:

score: 0
Accepted
time: 2ms
memory: 7744kb

input:

45728 589156

output:

54
5 35 1 36 1 37 1 38 1 16 1 
2 54 1 54 0 
2 53 1 2 0 
2 52 1 3 0 
2 51 1 4 0 
2 50 1 5 0 
1 6 1 
2 48 1 7 0 
1 8 1 
2 46 1 9 0 
1 10 1 
2 44 1 11 0 
2 43 1 12 0 
1 13 1 
1 14 1 
2 40 1 15 0 
1 54 0 
1 17 0 
2 52 0 18 1 
1 19 0 
1 20 0 
2 49 0 21 1 
2 48 0 22 1 
1 23 0 
2 46 0 24 1 
1 25 0 
2 44 0 ...

result:

ok ok

Test #18:

score: 0
Accepted
time: 2ms
memory: 7684kb

input:

129152 138000

output:

47
2 34 1 17 1 
2 47 1 47 0 
2 46 1 2 0 
2 45 1 3 0 
2 44 1 4 0 
2 43 1 5 0 
2 42 1 6 0 
2 41 1 7 0 
1 8 1 
2 39 1 9 0 
2 38 1 10 0 
2 37 1 11 0 
1 12 1 
1 13 1 
1 14 1 
1 15 1 
1 16 1 
1 47 0 
1 18 0 
1 19 0 
1 20 0 
2 43 0 21 1 
1 22 0 
1 23 0 
1 24 0 
2 39 0 25 1 
2 38 0 26 1 
1 27 0 
2 36 0 28 1...

result:

ok ok

Test #19:

score: 0
Accepted
time: 2ms
memory: 7756kb

input:

245280 654141

output:

56
3 37 1 38 1 18 1 
2 56 1 56 0 
2 55 1 2 0 
2 54 1 3 0 
2 53 1 4 0 
2 52 1 5 0 
1 6 1 
2 50 1 7 0 
2 49 1 8 0 
2 48 1 9 0 
1 10 1 
1 11 1 
1 12 1 
1 13 1 
1 14 1 
2 42 1 15 0 
1 16 1 
1 17 1 
2 56 0 56 1 
1 19 0 
2 54 0 20 1 
2 53 0 21 1 
2 52 0 22 1 
2 51 0 23 1 
1 24 0 
1 25 0 
2 48 0 26 1 
2 47...

result:

ok ok

Test #20:

score: 0
Accepted
time: 2ms
memory: 7744kb

input:

202985 296000

output:

52
2 36 1 18 1 
1 52 1 
2 51 1 2 0 
2 50 1 3 0 
1 4 1 
2 48 1 5 0 
1 6 1 
1 7 1 
1 8 1 
2 44 1 9 0 
2 43 1 10 0 
2 42 1 11 0 
1 12 1 
1 13 1 
2 39 1 14 0 
2 38 1 15 0 
2 37 1 16 0 
1 17 1 
1 52 0 
1 19 0 
1 20 0 
1 21 0 
1 22 0 
1 23 0 
2 46 0 24 1 
1 25 0 
1 26 0 
1 27 0 
2 42 0 28 1 
1 29 0 
1 30 ...

result:

ok ok

Test #21:

score: 0
Accepted
time: 2ms
memory: 7680kb

input:

438671 951305

output:

57
2 38 1 19 1 
1 57 1 
1 2 1 
1 3 1 
1 4 1 
2 53 1 5 0 
2 52 1 6 0 
2 51 1 7 0 
1 8 1 
1 9 1 
2 48 1 10 0 
2 47 1 11 0 
2 46 1 12 0 
1 13 1 
1 14 1 
2 43 1 15 0 
1 16 1 
2 41 1 17 0 
1 18 1 
2 57 0 57 1 
1 20 0 
1 21 0 
2 54 0 22 1 
1 23 0 
1 24 0 
1 25 0 
1 26 0 
1 27 0 
1 28 0 
2 47 0 29 1 
1 30 ...

result:

ok ok

Test #22:

score: 0
Accepted
time: 2ms
memory: 7760kb

input:

425249 739633

output:

56
2 38 1 19 1 
1 56 1 
2 55 1 2 0 
2 54 1 3 0 
2 53 1 4 0 
2 52 1 5 0 
1 6 1 
2 50 1 7 0 
2 49 1 8 0 
1 9 1 
2 47 1 10 0 
1 11 1 
1 12 1 
1 13 1 
1 14 1 
1 15 1 
2 41 1 16 0 
2 40 1 17 0 
1 18 1 
2 56 0 56 1 
1 20 0 
1 21 0 
1 22 0 
2 52 0 23 1 
2 51 0 24 1 
1 25 0 
1 26 0 
2 48 0 27 1 
1 28 0 
1 2...

result:

ok ok

Test #23:

score: 0
Accepted
time: 2ms
memory: 7740kb

input:

551207 961718

output:

56
1 38 1 
1 56 1 
1 2 1 
1 3 1 
2 53 1 4 0 
2 52 1 5 0 
1 6 1 
2 50 1 7 0 
2 49 1 8 0 
1 9 1 
2 47 1 10 0 
2 46 1 11 0 
1 12 1 
2 44 1 13 0 
1 14 1 
1 15 1 
2 41 1 16 0 
2 40 1 17 0 
2 39 1 18 0 
1 56 0 
2 55 0 20 1 
2 54 0 21 1 
1 22 0 
2 52 0 23 1 
2 51 0 24 1 
1 25 0 
2 49 0 26 1 
1 27 0 
1 28 0...

result:

ok ok

Test #24:

score: 0
Accepted
time: 2ms
memory: 7756kb

input:

114691 598186

output:

55
4 36 1 37 1 38 1 17 1 
1 55 1 
1 2 1 
2 53 1 3 0 
2 52 1 4 0 
2 51 1 5 0 
2 50 1 6 0 
2 49 1 7 0 
2 48 1 8 0 
2 47 1 9 0 
2 46 1 10 0 
2 45 1 11 0 
2 44 1 12 0 
2 43 1 13 0 
2 42 1 14 0 
1 15 1 
1 16 1 
1 55 0 
2 54 0 18 1 
1 19 0 
2 52 0 20 1 
1 21 0 
2 50 0 22 1 
1 23 0 
2 48 0 24 1 
1 25 0 
1 ...

result:

ok ok

Test #25:

score: 0
Accepted
time: 2ms
memory: 7804kb

input:

234654 253129

output:

46
1 32 1 
2 46 1 46 0 
1 2 1 
1 3 1 
1 4 1 
1 5 1 
2 41 1 6 0 
2 40 1 7 0 
1 8 1 
2 38 1 9 0 
2 37 1 10 0 
1 11 1 
2 35 1 12 0 
1 13 1 
2 33 1 14 0 
2 46 0 46 1 
1 16 0 
1 17 0 
2 43 0 18 1 
1 19 0 
1 20 0 
2 40 0 21 1 
2 39 0 22 1 
1 23 0 
1 24 0 
2 36 0 25 1 
2 35 0 26 1 
2 34 0 27 1 
1 28 0 
2 2...

result:

ok ok

Test #26:

score: 0
Accepted
time: 0ms
memory: 7688kb

input:

554090 608599

output:

52
1 36 1 
2 52 1 52 0 
1 2 1 
2 50 1 3 0 
1 4 1 
2 48 1 5 0 
1 6 1 
1 7 1 
2 45 1 8 0 
2 44 1 9 0 
2 43 1 10 0 
1 11 1 
2 41 1 12 0 
1 13 1 
1 14 1 
1 15 1 
2 37 1 16 0 
2 52 0 52 1 
2 51 0 18 1 
2 50 0 19 1 
1 20 0 
2 48 0 21 1 
1 22 0 
2 46 0 23 1 
1 24 0 
2 44 0 25 1 
1 26 0 
1 27 0 
2 41 0 28 1...

result:

ok ok

Extra Test:

score: 0
Extra Test Passed