結果

問題 No.2178 Payable Magic Items
ユーザー FplusFplusFFplusFplusF
提出日時 2023-01-06 23:51:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,377 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 211,340 KB
実行使用メモリ 25,760 KB
最終ジャッジ日時 2024-05-08 13:44:17
合計ジャッジ時間 8,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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;
    set<string> s;
    rep(i,n){
        string str;
        cin >> str;
        s.insert(str);
    }
    for(auto x=s.begin();x!=s.end();x++){
        for(auto y=s.begin();y!=s.end();y++){
            ll cnt=0;
            if(x==y) continue;
            string i=*x;
            string j=*y;
            if(1e4<=n){
                if(200<cnt) break;
            }
            cnt++;
            bool a=true,b=true;
            rep(l,k){
                if(j[l]<i[l]){
                    a=false;
                }
                if(i[l]<j[l]){
                    b=false;
                }
            }
            if(a){
                s.erase(i);
                x=s.begin();
            }
            if(b){
                s.erase(j);
                y=s.begin();
            }
            cnt++;
        }
    }
    cout << n-s.size() << endl;
    return 0;
}
0