| Task: | Merkkijonot |
| Sender: | stpn129 |
| Submission time: | 2023-01-21 14:46:43 +0200 |
| Language: | C++ (C++20) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
| #2 | WRONG ANSWER | 0.00 s | 1, 2, 3 | details |
| #3 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #4 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #5 | ACCEPTED | 0.00 s | 2, 3 | details |
| #6 | WRONG ANSWER | 0.00 s | 2, 3 | details |
| #7 | WRONG ANSWER | 0.09 s | 2, 3 | details |
| #8 | WRONG ANSWER | 0.00 s | 2, 3 | details |
| #9 | ACCEPTED | 0.00 s | 3 | details |
| #10 | WRONG ANSWER | 0.02 s | 3 | details |
| #11 | WRONG ANSWER | 0.00 s | 3 | details |
| #12 | WRONG ANSWER | 0.09 s | 3 | details |
| #13 | WRONG ANSWER | 0.00 s | 3 | details |
| #14 | ACCEPTED | 0.00 s | 3 | details |
| #15 | WRONG ANSWER | 0.00 s | 2, 3 | details |
| #16 | WRONG ANSWER | 0.09 s | 3 | details |
Compiler report
input/code.cpp: In function 'void solve()':
input/code.cpp:31:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | for (int j = 0; j < s.size(); ++j) {
| ~~^~~~~~~~~~Code
#include<bits/stdc++.h>
using namespace std;
void init_code(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
bool cmp (pair<int, int> a, pair<int, int> b) {
return a.second < b.second;
}
const int mod = 1e9 + 7;
void solve() {
int n;
cin >> n;
int suma = 0, sumb = 0;
vector<pair<int, int>> v(n);
for (int i = 0; i < n; ++i) {
string s;
cin >> s;
int a = 0, b = 0;
for (int j = 0; j < s.size(); ++j) {
a += (s[j] == 'a');
b += (s[j] == 'b');
}
v[i] = {a, b};
suma += a;
sumb += b;
}
// subtask 1
int mn = (1 << n);
int ans = 0;
for (int i = 1; i < mn; ++i) {
//cout << i << ' ';
int cura = 0, curb = 0;
int x = i, cnt = 0;
while (x > 0) {
int t = x % 2;
if (t) {
cura += v[cnt].first; curb += v[cnt].second;
}
x >>= 1;
cnt++;
//cout << t;
}
if (suma == cura * 2 && sumb == curb * 2) {
ans++;
}
//cout << '\n';
}
cout << (ans * 2) % mod << '\n';
}
signed main() {
init_code();
int t = 1;
//cin >> t;
while(t--){
solve();
}
return 0;
}
/*
cubbli-guest@dx5-cs-b221-09:~$ cd Code
cubbli-guest@dx5-cs-b221-09:~/Code$ ls
code code.cpp input.txt output.txt
cubbli-guest@dx5-cs-b221-09:~/Code$ g++ code.cpp -o code
cubbli-guest@dx5-cs-b221-09:~/Code$ ./code
Segmentation fault (core dumped)
cubbli-guest@dx5-cs-b221-09:~/Code$
double l = 0, r = sqrt(a), m = 0;
for (int i = 0; i < 120; ++i) {
m = (r + l) / 2;
if ((m + 1) * (a / m + 1) < b) {
r = m;
} else {
l = m;
}
}
if ((r + 1) * (a / r + 1) == b) {
cout << "YES" << '\n';
} else {
cout << "NO" << '\n';
}
*/Test details
Test 1
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 4 b bbb baabaabaa aab |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 2
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 8 b bb baa a ... |
| correct output |
|---|
| 12 |
| user output |
|---|
| 24 |
Test 3
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 16 a a a b ... |
| correct output |
|---|
| 5040 |
| user output |
|---|
| 10080 |
Test 4
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 16 b b a a ... |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 5
Group: 2, 3
Verdict: ACCEPTED
| input |
|---|
| 5 bab bbaaabbabbbaababbbabbabaaabaaa... |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 6
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 10 baabbbababbbabbaaaabab aabaaabbbab aaaabbabab aab ... |
| correct output |
|---|
| 2 |
| user output |
|---|
| 4 |
Test 7
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 20 aaaab baaab babb b ... |
| correct output |
|---|
| 4332 |
| user output |
|---|
| 8664 |
Test 8
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 100 a b a b ... |
| correct output |
|---|
| 433105324 |
| user output |
|---|
| 0 |
Test 9
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 10 aaaabbabbaabbaaaabbbbabaaaabab... |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 10
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 50 aaba aaa abbbbaaba ababbabbabab ... |
| correct output |
|---|
| 636733956 |
| user output |
|---|
| 0 |
Test 11
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 100 ba bbbaba bbba bb ... |
| correct output |
|---|
| 264657218 |
| user output |
|---|
| 0 |
Test 12
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 500 a b b b ... |
| correct output |
|---|
| 394045503 |
| user output |
|---|
| 0 |
Test 13
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 2 bbbababaaaabbbaaaaaaabbabbbaab... |
| correct output |
|---|
| 2 |
| user output |
|---|
| 4 |
Test 14
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 1 bbbaaaabaabbbababbbbbbbbabbbaa... |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 15
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 100 a a a a ... |
| correct output |
|---|
| 538992043 |
| user output |
|---|
| 0 |
Test 16
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 500 a a a a ... |
| correct output |
|---|
| 515561345 |
| user output |
|---|
| 0 |
