結果

問題 No.2178 Payable Magic Items
ユーザー FplusFplusFFplusFplusF
提出日時 2023-01-06 22:53:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,226 bytes
コンパイル時間 3,295 ms
コンパイル使用メモリ 235,444 KB
実行使用メモリ 188,520 KB
最終ジャッジ日時 2024-05-08 13:38:08
合計ジャッジ時間 11,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1,106 ms
173,656 KB
testcase_12 AC 815 ms
173,756 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#define rep(i,n) for (int i=0;i<(long long)(n);i++)
#define all(v) v.begin(),v.end()
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
const ll INF=(1ll<<60);
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
int main(){
    ll n,k;
    cin >> n >> k;
    vector<deque<char>> s(n);
    rep(i,n){
        rep(j,k){
            char c;
            cin >> c;
            s[i].push_back(c);
        }
    }
    rep(i,k){
        vector<bool> b(s.size(),true);
        sort(all(s));
        rep(j,s.size()-1){
            bool d=true;
            rep(l,k){
                if(s[j+1][l]<s[j][l]){
                    d=false;
                    break;
                }
            }
            if(d) b[j]=false;
        }
        vector<deque<char>> t;
        rep(j,s.size()){
            if(!b[j]) continue;
            s[j].push_back(s[j].front());
            s[j].pop_front();
            t.push_back(s[j]);
        }
        s=t;
    }
    cout << n-s.size() << endl;
}
0