QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#321211#7789. Outro: True Love WaitsoqlWA 7ms11716kbC++172.7kb2024-02-04 10:12:142024-02-04 10:12:14

Judging History

你现在查看的是最新测评结果

  • [2024-02-04 10:12:14]
  • 评测
  • 测评结果:WA
  • 用时:7ms
  • 内存:11716kb
  • [2024-02-04 10:12:14]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define fo(i,j,k) for(int i=(j),end_i=(k);i<=end_i;i++)
#define ff(i,j,k) for(int i=(j),end_i=(k);i< end_i;i++)
#define fd(i,j,k) for(int i=(j),end_i=(k);i>=end_i;i--)
#define all(x) (x).begin(),(x).end()
#define cle(x) memset(x,0,sizeof(x))
#define lowbit(x) ((x)&-(x))
#define VI vector<int>
#define ll long long
#define ull unsigned ll
#define lll __int128
#define db double
#define lb long db
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define endl "\n"
template<class T>inline void read(T &x) {
    x=0; char ch=getchar(); bool f=0;
    for(;ch<'0'||ch>'9';ch=getchar()) f|=(ch=='-');
    for(;ch>='0'&&ch<='9';ch=getchar()) x=x*10+(ch^48);
    if(f) x=-x;
}
template<class T, class... V>
inline void read(T &a, V&... b){read(a); read(b...);}
#ifndef ONLINE_JUDGE
#define debug(x) cerr<<#x<<"="<<x<<endl
#define debugv(x) cerr<<#x<<" : "; ff(i,0,(x).size()) cerr<<(x)[i]<<(i==(x).size()-1?'\n':' ')
#else
#define debug(x)
#define debugv(x)
#endif
mt19937_64 rnd(chrono::steady_clock::now().time_since_epoch().count());

const ll mod = 1e9 + 7;
inline ll Pow(ll x,ll y) {
    ll ans = 1;
    for(; y; y >>= 1, x = x * x % mod)
        if(y & 1)
            ans = ans * x % mod;
    return ans;
}
inline ll Add(ll x,ll y) {
    x += y;
    return (x >= mod) ? x - mod : x;
}
inline ll Dec(ll x,ll y) {
    x -= y;
    return (x < 0) ? x + mod : x;
}
inline ll Mul(ll x,ll y) {
    return 1ll * x * y % mod;
}

const int N = 1e6 + 4;
const int value[4] = {0, 1, 3, 2};

string s, t;
int k, r;
int a[N], b[N];
ll f[N];
ll solve(int u, int k) {
    int x = b[u];
    ll tmp = f[u-1] * value[x] % mod;
    if (u == r) {
        return (tmp + (Pow(4, k) + mod - 4) * Pow(3, mod - 2) % mod) % mod;
    }
    return tmp + solve(u-1, k);
}

void Solve() {
    cin >> s >> t >> k;
    int n = s.size(), m = t.size();
    fo(i,1,n) a[n-i+1] ^= s[i-1] - '0';
    fo(i,1,m) a[m-i+1] ^= t[i-1] - '0';
    int len = 0;
    for (;len + 1 <= n || len + 1 <= m; len += 2)
        b[len/2 + 1] = a[len+1] + a[len+2] * 2;
    len = len / 2;
    r = 0;
    while (r < len && b[r+1] == 0) r ++;
    ll ans;
    if (r == len)
        ans =  (Pow(4, k) + mod - 4) * Pow(3, mod - 2) % mod;
    else 
    if (k > r + 1) 
        ans = -1;
    else
        ans = solve(len, k);
    fo(i,1,max(n, m)) a[i] = 0;
    printf("%lld\n", ans);
}
void work() {
    int n = 1e6;
    f[0] = 1;
    fo(i,1,n) f[i] = (f[i-1] * 4 + 1) % mod;
}
int main() {
    work();
    int T = 1;
    //read(T);
    ios::sync_with_stdio(0); cin.tie(0);
    cin >> T;
    for(;T--;) Solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

4
1 10 1
1 10 2
100 0 2
11 11 3

output:

2
-1
9
20

result:

ok 4 number(s): "2 -1 9 20"

Test #2:

score: 0
Accepted
time: 7ms
memory: 11704kb

input:

1
0 0 1

output:

0

result:

ok 1 number(s): "0"

Test #3:

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

input:

100
110111 11111 1
10110 101101 1
11010 111111 1
100110 1 1
10010 11010 1
1100 10111 1
100100 111110 1
101110 101100 1
1011 10110 1
110100 1110 1
11010 11000 1
11110 1000 1
111000 11101 1
110 1001 1
101010 11000 1
10 111110 1
110001 101000 1
1010 1000 1
10101 11 1
111011 11010 1
110001 100000 1
1100...

output:

78
59
69
70
15
38
39
3
32
60
3
29
69
12
45
52
37
3
29
64
22
39
54
69
65
27
33
76
34
18
57
13
81
15
23
70
69
36
18
23
29
42
69
54
6
0
63
3
29
15
10
16
80
24
37
59
71
13
23
31
21
34
23
48
21
47
7
44
42
3
37
75
59
29
55
39
29
28
29
70
55
16
54
47
24
18
79
60
8
26
64
58
32
6
8
37
2
68
42
44

result:

ok 100 numbers

Test #4:

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

input:

100
10011111 111 2
1011101100 1000000100 1
100011111 1001001111 1
1001100101 1100100001 1
10101000 10000100 1
1011110101 100011101 1
110100001 111011010 1
1101001100 1111101101 1
1001101 11011010 1
1101110110 1101011000 1
110011001 1100001111 2
1001111001 1011001111 1
1001110 1101110100 2
1110110100...

output:

295
248
788
431
73
930
144
319
283
76
-1
305
-1
-1
86
-1
312
293
1293
433
1179
0
884
963
1215
576
-1
1132
499
811
864
949
1322
406
526
862
-1
447
1203
1238
873
-1
-1
1131
1108
438
134
359
80
740
1057
752
31
950
1093
1261
650
235
996
876
504
925
1344
450
1010
273
-1
1144
1041
717
-1
164
-1
11
798
419...

result:

ok 100 numbers

Test #5:

score: 0
Accepted
time: 7ms
memory: 11716kb

input:

1000
1010011001 1100000000 1
1111001110 100100011 1
10000001 1110100110 1
1001000010 1111011110 1
11110001 101101110 1
10110001 110010 1
110111100 1111011111 1
1010101010 1111110000 1
11010110 11000110 1
1101101100 10001101 1
1101000110 111100110 3
1101100 10110 1
1001101001 10010001 1
1000110100 11...

output:

633
1267
752
627
629
257
1173
465
21
916
1361
145
1250
1006
155
783
412
684
400
1126
1204
185
298
932
535
246
1094
325
272
-1
-1
389
164
-1
-1
644
436
1271
261
741
351
212
985
426
236
1356
952
1256
1039
911
709
547
1349
142
229
1077
538
48
1089
378
1152
524
218
1161
485
884
751
299
206
268
95
933
76...

result:

ok 1000 numbers

Test #6:

score: -100
Wrong Answer
time: 5ms
memory: 11568kb

input:

1000
100110100101100101010111110010101010110011100011111101110010010001011001100100000001101110101111101 1110001111001100110000111010010101001111100010101010110110101001000001001000011101000011001110101011 1
11101111001001100011000010001010001011001101011110011011100111011111000000010000110100101001...

output:

15218980577
-1
-1
15517518686
-1
-1
15085094255
17666890665
13885064132
-1
-1
15189310612
16730304845
-1
16659799542
14794266202
-1
-1
-1
12760479797
15644679072
13837810993
13535065140
-1
-1
-1
17186342894
13939519748
-1
14257634822
14172396305
13442878478
-1
14495325765
11951414989
-1
-1
-1
137145...

result:

wrong answer 1st numbers differ - expected: '218980472', found: '15218980577'