답안 #1002316

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1002316 2024-06-19T12:26:43 Z Sang Difference (POI11_roz) C++14
90 / 100
670 ms 13144 KB
// Created by Sang lớp 9
// Какого черта ты переводишь?
#include <bits/stdc++.h>
using namespace std;
#define Sang 1
// #define int long long
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define endl '\n'
#define FOR(i, a, b) for(__typeof(b) i = a, _b = b; i <= _b; ++i)
#define FORD(i, a, b) for(__typeof(a) i = a, _b = b; i >= _b; --i)
#define ALL(a) (a).begin(), (a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define MASK(i) (1ll<<(i))
#define BIT(t, i) (((t)>>(i))&1)
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef pair<int, ii> pii;
const int MOD = 1e9+7;
const int N = 1e5+5;
const int INF = 0x3f3f3f3f;
 
template <class T> bool minimize(T &a, T b) { if (a > b) { a = b; return true; } return false;}
 
template <class T> bool maximize(T &a, T b) { if (a < b) { a = b; return true; } return false;}
 
//   ****   ****
//  *     *     *
//  *    K.B    *
//    *       *
//       * *  
 
int n;
vi pos[30];
 
int cal(int x, int y){
    vi b;
    if (x == y) return 0;
    if (pos[x].size() == 0 || pos[y].size() == 0) return 0;
    int i = 0, j = 0;
    while (i < pos[x].size() && j < pos[y].size()){
        if (pos[x][i] < pos[y][j]){
            b.pb(-1);
            i++;
        } else {
            b.pb(1);
            j++;
        }
    }
    while (j < pos[y].size()){
        b.pb(1);
        j++;
    }
    int mi = INF, sum = 0, ans = 0, ok = 0, last = 0;
    for (int x : b){
        if (x == -1) minimize(mi, last);
        sum += x;
        maximize(ans, sum-mi);
        minimize(last, sum);
    }
    return ans;
    
}
 
int32_t main() {
   ios_base::sync_with_stdio(false);
   cin.tie(0); cout.tie(0);
    #ifndef Sang
        freopen("DIFFER.inp", "r", stdin);
        freopen("DIFFER.out", "w", stdout);
    #endif
    cin >> n;
    FOR (i, 1, n){
        char c; cin >> c;
        pos[c-'a'].pb(i);
    }
    int ans = 0;
    FOR (i, 'a', 'z'){
        FOR (j, 'a', 'z'){
            maximize(ans, cal(i-'a', j-'a'));
        }
    }
    cout << ans;
 
    return 0;
}

Compilation message

roz.cpp: In function 'int cal(int, int)':
roz.cpp:43:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |     while (i < pos[x].size() && j < pos[y].size()){
      |            ~~^~~~~~~~~~~~~~~
roz.cpp:43:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |     while (i < pos[x].size() && j < pos[y].size()){
      |                                 ~~^~~~~~~~~~~~~~~
roz.cpp:52:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   52 |     while (j < pos[y].size()){
      |            ~~^~~~~~~~~~~~~~~
roz.cpp:56:37: warning: unused variable 'ok' [-Wunused-variable]
   56 |     int mi = INF, sum = 0, ans = 0, ok = 0, last = 0;
      |                                     ^~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Incorrect 0 ms 348 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 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
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 7 ms 460 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 64 ms 860 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 3 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 670 ms 6748 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 361 ms 5564 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 666 ms 6872 KB Output is correct
2 Correct 516 ms 5324 KB Output is correct
3 Correct 190 ms 6388 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 636 ms 6932 KB Output is correct
2 Correct 80 ms 12096 KB Output is correct
3 Correct 81 ms 7320 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 636 ms 6692 KB Output is correct
2 Correct 42 ms 13144 KB Output is correct
3 Correct 186 ms 7160 KB Output is correct