# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
30068 | 2017-07-22T04:30:04 Z | 박상수(#1251) | Difference (POI11_roz) | C++11 | 503 ms | 14332 KB |
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <memory.h> #include <math.h> #include <assert.h> #include <queue> #include <map> #include <set> #include <string> #include <algorithm> #include <iostream> #include <functional> #include <unordered_map> #include <unordered_set> #include <list> #include <bitset> using namespace std; typedef pair<int, int> pii; typedef long long ll; #define Fi first #define Se second #define pb(x) push_back(x) #define sz(x) ((int)(x).size()) #define rep(i, n) for(int i=0;i<n;i++) #define all(x) (x).begin(), (x).end() typedef tuple<int, int, int> t3; typedef pair<ll, ll> pll; typedef long double ldouble; typedef pair<double, double> pdd; int n; char A[1000010]; vector <int> P[26]; int V[1000010], z; void solve(){ scanf("%d", &n); scanf("%s", A+1); for(int i=1;i<=n;i++) { int c = A[i] - 'a'; P[c].pb(i); } int ans = 0; rep(i, 26) rep(j, i) { z = 0; for(int a=0, b=0;a<=sz(P[i]);a++) { while(b < sz(P[j]) && (a == sz(P[i]) || P[j][b] < P[i][a])) { V[++z] = -1; ++b; } if(a < sz(P[i]))V[++z] = 1; } int mn = 1e9, mx = -1e9; for(int a=1;a<=z;a++) V[a] += V[a-1]; for(int a=1, b=1;a<=z;a++) { ans = max({ans, V[a] - mn, mx - V[a]}); if(ans == 6) { ++ans; --ans; } if(V[a]-V[a-1] != V[a+1]-V[a]) { while(b<=a){ if(mn > V[b]) mn = V[b]; if(mx < V[b]) mx = V[b]; ++b; } } } } printf("%d\n", ans); } int main(){ int T = 1; // scanf("%d", &T); while(T--) { solve(); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 6904 KB | Output is correct |
2 | Correct | 0 ms | 6904 KB | Output is correct |
3 | Correct | 0 ms | 6904 KB | Output is correct |
4 | Correct | 0 ms | 6904 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 6904 KB | Output is correct |
2 | Incorrect | 0 ms | 6904 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 6904 KB | Output is correct |
2 | Correct | 0 ms | 6904 KB | Output is correct |
3 | Incorrect | 0 ms | 6904 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 6904 KB | Output is correct |
2 | Incorrect | 0 ms | 6904 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 7036 KB | Output is correct |
2 | Incorrect | 0 ms | 6904 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 49 ms | 7312 KB | Output is correct |
2 | Incorrect | 0 ms | 6904 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 489 ms | 14332 KB | Output is correct |
2 | Incorrect | 0 ms | 6904 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 496 ms | 13980 KB | Output is correct |
2 | Correct | 426 ms | 13456 KB | Output is correct |
3 | Correct | 176 ms | 13684 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 499 ms | 14328 KB | Output is correct |
2 | Correct | 239 ms | 14164 KB | Output is correct |
3 | Incorrect | 206 ms | 12136 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 503 ms | 13928 KB | Output is correct |
2 | Correct | 213 ms | 12112 KB | Output is correct |
3 | Correct | 196 ms | 14200 KB | Output is correct |