結果
問題 | No.2178 Payable Magic Items |
ユーザー | FplusFplusF |
提出日時 | 2023-01-06 23:31:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,486 bytes |
コンパイル時間 | 2,777 ms |
コンパイル使用メモリ | 215,500 KB |
実行使用メモリ | 18,304 KB |
最終ジャッジ日時 | 2024-05-08 13:41:03 |
合計ジャッジ時間 | 14,812 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 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 | WA | - |
testcase_12 | WA | - |
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 | - |
ソースコード
#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<vector<char>> s(n,vector<char>(k)); rep(i,n){ rep(j,k){ cin >> s[i][j]; } } vector<ll> v; rep(i,(1<<k)){ vector<ll> p; rep(j,k){ if(i&(1<<j)) p.push_back(j); } vector<ll> x(p.size()); ll save=0; rep(j,n){ if(j==0) continue; bool t=true; rep(l,p.size()){ if(s[j][p[l]]<=s[save][p[l]]){ t=false; break; } } if(t){ save=j; } } v.push_back(save); } set<ll> ans; for(auto &i:v){ rep(j,n){ if(i==j) continue; bool t=true; rep(l,k){ if(s[i][l]<s[j][l]){ t=false; break; } } if(t) ans.insert(j); } } cout << ans.size() << endl; }