QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#133001#6628. Flip it and Stick ittatyam#4 4ms3928kbC++171.2kb2023-08-01 12:49:512024-07-04 01:04:25

Judging History

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

  • [2024-07-04 01:04:25]
  • 评测
  • 测评结果:4
  • 用时:4ms
  • 内存:3928kb
  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-08-01 12:49:51]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define all(a) begin(a), end(a)

/*
    0 => jimei
    00 => 00 wo kirihanasu
    haji no 1 wo yoseru
     or 11 wo kirihanasu
    01 => 11111000000
     hidari no 0 to migi no 1 de reverse
    000 => 000+ wo kirihanasu
    1 ga tarinaku naru toki ha kisuu ko no 0 wo kuttukeru
    001 => 1111101101010111000000
     00+ wo migi ni
    010 => 111111001101110001100111111
     chuuou no 1 to 1 wo kuttukeru
*/
int count(const string& S, char c) {
    return count(all(S), c);
}
string reversed(string S) {
    reverse(all(S));
    return S;
}
int solve() {
    string S, T;
    cin >> S >> T;
    const int N = S.size();
    if(count(T, '1') > count(T, '0')) {
        for(char& c : S) c ^= 1;
        for(char& c : T) c ^= 1;
    }
    if(T > reversed(T)) {
        S = reversed(S);
        T = reversed(T);
    }
    if(T == "0") {
        if(count(S, '0')) return -1;
        return 0;
    }
    if(T == "01") {
        int ans = 0;
        for(int i = 0; i + 1 < N; i++) if(S.substr(i, 2) == "01") ans++;
        return ans;
    }
    return 0;
}
int main() {
    cout << solve() << endl;
}

詳細信息

Subtask #1:

score: 1
Accepted

Test #1:

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

input:

1
0

output:

0

result:

ok 1 number(s): "0"

Test #2:

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

input:

1
1

output:

-1

result:

ok 1 number(s): "-1"

Test #3:

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

input:

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

output:

0

result:

ok 1 number(s): "0"

Test #5:

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

input:

101001000011101010101001001010010110111111001100110001111101111110110110101011111010001101111001101101010111101100000110001110001100000101111100000110111110001010101101101110001000011010000101000110110010110110100001110001111001010000000010000000101000000100110011101110100111111101111111111110010101...

output:

-1

result:

ok 1 number(s): "-1"

Test #6:

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

input:

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

0

result:

ok 1 number(s): "0"

Test #7:

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

input:

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

-1

result:

ok 1 number(s): "-1"

Subtask #2:

score: 3
Accepted

Test #8:

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

input:

0
01

output:

0

result:

ok 1 number(s): "0"

Test #9:

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

input:

0
10

output:

0

result:

ok 1 number(s): "0"

Test #10:

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

input:

01
01

output:

1

result:

ok 1 number(s): "1"

Test #11:

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

input:

01
10

output:

0

result:

ok 1 number(s): "0"

Test #12:

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

input:

1010101010
10

output:

5

result:

ok 1 number(s): "5"

Test #13:

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

input:

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

0

result:

ok 1 number(s): "0"

Test #14:

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

input:

100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

0

result:

ok 1 number(s): "0"

Test #15:

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

input:

010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101...

output:

100000

result:

ok 1 number(s): "100000"

Test #16:

score: 0
Accepted
time: 4ms
memory: 3584kb

input:

000110111001011000010001010010010000010100100000011101010000001000110011100000011011100101110110000001000000000011001010001101001110011111001101110010001100000000010000000100100011000111010011100110011101100011000100011001010000010001001010010101100000100000010010110000000001011100100001000010100100...

output:

43860

result:

ok 1 number(s): "43860"

Test #17:

score: 0
Accepted
time: 4ms
memory: 3648kb

input:

111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

output:

44072

result:

ok 1 number(s): "44072"

Subtask #3:

score: 0
Wrong Answer

Dependency #2:

100%
Accepted

Test #18:

score: 4
Accepted
time: 0ms
memory: 3588kb

input:

0
01

output:

0

result:

ok 1 number(s): "0"

Test #19:

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

input:

0
10

output:

0

result:

ok 1 number(s): "0"

Test #20:

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

input:

01
01

output:

1

result:

ok 1 number(s): "1"

Test #21:

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

input:

01
10

output:

0

result:

ok 1 number(s): "0"

Test #22:

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

input:

1
00

output:

0

result:

ok 1 number(s): "0"

Test #23:

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

input:

1
11

output:

0

result:

ok 1 number(s): "0"

Test #24:

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

input:

10
00

output:

0

result:

ok 1 number(s): "0"

Test #25:

score: -4
Wrong Answer
time: 0ms
memory: 3568kb

input:

11
11

output:

0

result:

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

Subtask #4:

score: 0
Wrong Answer

Test #40:

score: 5
Accepted
time: 0ms
memory: 3788kb

input:

11
011

output:

0

result:

ok 1 number(s): "0"

Test #41:

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

input:

0
110

output:

0

result:

ok 1 number(s): "0"

Test #42:

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

input:

01
100

output:

0

result:

ok 1 number(s): "0"

Test #43:

score: -5
Wrong Answer
time: 0ms
memory: 3552kb

input:

110
110

output:

0

result:

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

Subtask #5:

score: 0
Wrong Answer

Test #53:

score: 5
Accepted
time: 0ms
memory: 3600kb

input:

11
011

output:

0

result:

ok 1 number(s): "0"

Test #54:

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

input:

01
100

output:

0

result:

ok 1 number(s): "0"

Test #55:

score: -5
Wrong Answer
time: 0ms
memory: 3592kb

input:

011
011

output:

0

result:

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

Subtask #6:

score: 0
Skipped

Dependency #4:

0%