QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#745992#5577. Alchemyi24WA 0ms3784kbC++141.3kb2024-11-14 12:52:052024-11-14 12:52:06

Judging History

你现在查看的是最新测评结果

  • [2024-11-14 12:52:06]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3784kb
  • [2024-11-14 12:52:05]
  • 提交

answer

// File generated on 24/11/13 20:14 by Anand

#include <bits/stdc++.h>
using namespace std;

#define fastio ios::sync_with_stdio(false); cin.tie(0)
#define rep(i, m, n)  for (long long i = m; i < n; i++)
#define DEBUG(x) cout << "debug: " << x << "\n"
#define YES cout << "YES\n"
#define NO cout << "NO\n"
#define pb push_back
#define sz size

typedef long long ll;
typedef pair<ll,ll> pll;
typedef vector<ll> vec;
typedef vector<vec> vecc;
typedef vector<pll> vecp;

void SOLVE() {
    string s;
    cin >> s;
    ll n = s.size();
    ll m = ceil(n/2.0)+1;
    vec a(m);
    ll ans = 0;
    rep(i,0,m) 
        if (s[i] == s[n-1-i]) a[i] = 1;
    vec x;
    ll c = 0, p = a[0];
    rep(i,0,m) {
        if (a[i] == p) c++;
        else {p = a[i]; x.pb(c); c = 0;}
    }
    if (c > 0) x.pb(c);
    ll st = 0;
    if (a[0] == 1) st = 1;
    rep(i, st, x.size()) {
        if (x[i]%2==0) ans += x[i]/2;
        else if (i+2 < x.size() && x[i+1] == 1 && x[i+2]%2 == 1) {ans += ((x[i] + x[i+2]) / 2 + 1); i+=2;}
        else if (x[i] == 1 && i < x.size() - 1) ans += 2;
        else if (x[i] == 1) ans++;
        else ans += (x[i] - 1) / 2 + 1;
        i+=2;
    }

    cout << ans << "\n";
}

signed main() {
    fastio;

    //ll _;
    //cin >> _;

    //while(_--) 
		SOLVE();

    return 0;
}


详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3632kb

input:

ioi

output:

0

result:

ok single line: '0'

Test #2:

score: -100
Wrong Answer
time: 0ms
memory: 3784kb

input:

noi

output:

2

result:

wrong answer 1st lines differ - expected: '1', found: '2'