# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1002426 |
2024-06-19T14:47:03 Z |
icebear |
Difference (POI11_roz) |
C++14 |
|
352 ms |
14272 KB |
// ~~ icebear ~~
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
typedef pair<ii, int> iii;
#define FOR(i,a,b) for(int i=a; i<=b; ++i)
#define FORR(i,a,b) for(int i=a; i>=b; --i)
#define rep(i, n) for(int i=0; i<n; ++i)
#define red(i, n) for(int i=n-1; i>=0; --i)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define task "differ"
const int MOD = 1e9 + 7;
const int inf = 1e9 + 27092008;
const ll LLinf = 1e18 + 27092008;
const int N = 1e6 + 5;
int n;
string s;
vector<int> pos[26];
int maxSub(vector<int> &arr){
int res = 0, Min = 0;
FOR(i,1,(int)arr.size()-1){
arr[i] += arr[i-1];
if (arr[i] != i) res = max(res, arr[i] - Min);
Min = min(Min, arr[i]);
}
return res;
}
void solve(){
cin >> n >> s;
rep(i, n)
pos[s[i] - 'a'].pb(i);
int ans = 0;
rep(i, 26)
FOR(j,i+1,25){
vector<int> arr(1, 0), tmp;
int l=0, r=0;
while(l < pos[i].size() && r < pos[j].size())
if (pos[i][l] < pos[j][r]) arr.pb(+1), l++;
else arr.pb(-1), r++;
while(l < pos[i].size()) arr.pb(+1), l++;
while(r < pos[j].size()) arr.pb(-1), r++;
tmp = arr;
for(int &v : tmp) v = -v;
ans = max({ans, maxSub(arr), maxSub(tmp)});
}
cout << ans;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
if (fopen(task".inp", "r")){
freopen(task".inp", "r", stdin);
freopen(task".out", "w", stdout);
}
int tc = 1;
// cin >> tc;
while(tc--) solve();
return 0;
}
Compilation message
roz.cpp: In function 'void solve()':
roz.cpp:46:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
46 | while(l < pos[i].size() && r < pos[j].size())
| ~~^~~~~~~~~~~~~~~
roz.cpp:46:42: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
46 | while(l < pos[i].size() && r < pos[j].size())
| ~~^~~~~~~~~~~~~~~
roz.cpp:49:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | while(l < pos[i].size()) arr.pb(+1), l++;
| ~~^~~~~~~~~~~~~~~
roz.cpp:50:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | while(r < pos[j].size()) arr.pb(-1), r++;
| ~~^~~~~~~~~~~~~~~
roz.cpp: In function 'int main()':
roz.cpp:63:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
63 | freopen(task".inp", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
roz.cpp:64:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
64 | freopen(task".out", "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
1 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
360 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
600 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
28 ms |
1116 KB |
Output is correct |
2 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
343 ms |
9412 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
341 ms |
9464 KB |
Output is correct |
2 |
Correct |
177 ms |
7668 KB |
Output is correct |
3 |
Correct |
148 ms |
7148 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
352 ms |
9192 KB |
Output is correct |
2 |
Correct |
159 ms |
13080 KB |
Output is correct |
3 |
Incorrect |
136 ms |
8372 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
268 ms |
9060 KB |
Output is correct |
2 |
Correct |
152 ms |
14272 KB |
Output is correct |
3 |
Correct |
183 ms |
8064 KB |
Output is correct |