結果

問題 No.2745 String Swap Battle
ユーザー 0214sh70214sh7
提出日時 2024-04-21 05:29:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,916 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 205,064 KB
実行使用メモリ 9,592 KB
最終ジャッジ日時 2024-04-21 05:29:24
合計ジャッジ時間 3,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 9 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 12 ms
6,940 KB
testcase_07 AC 13 ms
6,940 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 6 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 164 ms
9,584 KB
testcase_13 AC 154 ms
9,592 KB
testcase_14 AC 153 ms
9,556 KB
testcase_15 AC 13 ms
6,944 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 14 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<ll,ll> PP;
// #define MOD 1000000007
#define MOD 998244353
#define INF 2305843009213693951
//#define INF 810114514
#define PI 3.141592653589
#define setdouble setprecision
#define REP(i,n) for(ll i=0;i<(n);++i)
#define OREP(i,n) for(ll i=1;i<=(n);++i)
#define RREP(i,n) for(ll i=(n)-1;i>=0;--i)
#define ORREP(i,n) for(ll i=(n);i>=1;--i)
#define rep(i,a,b) for(ll i=(a);i<=(b);++i)
#define ALL(v) (v).begin(), (v).end()
#define GOODBYE do { cout << "-1" << endl; return 0; } while (false)
#define MM <<" "<<
#define Endl endl
#define debug true
#define debug2 false

int main(void){
    //cin.tie(nullptr);
    //ios::sync_with_stdio(false);

    ll N;
    cin >> N;
    vector<string> S(N);
    REP(i,N){
        cin >> S[i];
    }
    
    auto T = S;
    
    REP(i,N){
        string s = S[i];
        auto ss = s;sort(ALL(ss));
        if(ss==s){
            swap(s[s.size()-1],s[s.size()-2]);
            T[i] = s;
            continue;
        }
        
        vector<ll> B(26,0);REP(j,s.size()){B[s[j]-'a']++;}
        
        ll now = 0;
        while(B[now]==0)now++;
        REP(j,s.size()){
            if(s[j]!='a'+now){
                RREP(k,s.size()){
                    if(s[k]=='a'+now){
                        swap(s[j],s[k]);
                        break;
                    }
                }
                break;
            }
            B[now]--;while(B[now]==0)now++;
        }
        
        T[i] = s;
    }
    
    // REP(i,N){
    //     cout << T[i] << endl;
    // }
    
    string m = T[0];
    REP(j,N){
        m = min(m,T[j]);
    }
    
    ll num = 0;
    REP(j,N){
        if(T[j]==m)num++;
    }
    
    REP(j,N){
        if(T[j]==m){
            cout << N+1-num << endl;
        }else{
            cout << 0 << endl;
        }
    }
    
    return 0;
    
}
0