#ifndef Local
#pragma GCC optimize ("O3")
#pragma GCC optimize ("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#pragma comment(linker, "/STACK:1024000000,1024000000")
#endif
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using namespace std;
#define popCnt(x) (__builtin_popcountll(x))
typedef long long Long;
const int N = 1e6 + 5;
string a;
string b;
string compress(const string& s) {
string res = s.substr(0, 1);
for (char c : s) {
if (c != res.back()) {
res += c;
}
}
return res;
}
int main() {
ios_base::sync_with_stdio(0), cin.tie(0), cerr.tie(0);
#ifdef Local
freopen("test.in", "r", stdin);
#else
#define endl '\n'
#endif
int n;
cin >> n >> a >> b;
b = compress(b);
if (b.back() == '0') {
b.pop_back();
}
if (!b.empty() && b[0] == '0') {
b = b.substr(1);
}
cout << (b.size() + 1) / 2 << endl;
}
Compilation message
lamp.cpp:5:0: warning: ignoring #pragma comment [-Wunknown-pragmas]
#pragma comment(linker, "/STACK:1024000000,1024000000")
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Correct |
2 ms |
256 KB |
Output is correct |
4 |
Correct |
2 ms |
256 KB |
Output is correct |
5 |
Correct |
2 ms |
252 KB |
Output is correct |
6 |
Correct |
2 ms |
376 KB |
Output is correct |
7 |
Correct |
8 ms |
2832 KB |
Output is correct |
8 |
Correct |
15 ms |
4352 KB |
Output is correct |
9 |
Correct |
15 ms |
4364 KB |
Output is correct |
10 |
Correct |
16 ms |
4364 KB |
Output is correct |
11 |
Correct |
16 ms |
4532 KB |
Output is correct |
12 |
Correct |
8 ms |
2876 KB |
Output is correct |
13 |
Correct |
8 ms |
2836 KB |
Output is correct |
14 |
Correct |
8 ms |
2832 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |