結果
問題 | No.452 横着者のビンゴゲーム |
ユーザー | kzyKT |
提出日時 | 2016-12-03 00:39:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,980 ms / 3,000 ms |
コード長 | 2,214 bytes |
コンパイル時間 | 1,846 ms |
コンパイル使用メモリ | 171,512 KB |
実行使用メモリ | 14,144 KB |
最終ジャッジ日時 | 2024-05-06 14:12:05 |
合計ジャッジ時間 | 25,107 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 21 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 29 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 8 ms
5,376 KB |
testcase_08 | AC | 11 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 9 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 724 ms
12,508 KB |
testcase_15 | AC | 697 ms
12,376 KB |
testcase_16 | AC | 802 ms
10,388 KB |
testcase_17 | AC | 1,980 ms
14,144 KB |
testcase_18 | AC | 256 ms
6,428 KB |
testcase_19 | AC | 667 ms
8,508 KB |
testcase_20 | AC | 958 ms
8,612 KB |
testcase_21 | AC | 332 ms
9,536 KB |
testcase_22 | AC | 1,132 ms
8,836 KB |
testcase_23 | AC | 424 ms
10,192 KB |
testcase_24 | AC | 1,293 ms
8,984 KB |
testcase_25 | AC | 475 ms
8,644 KB |
testcase_26 | AC | 521 ms
9,344 KB |
testcase_27 | AC | 999 ms
8,708 KB |
testcase_28 | AC | 273 ms
6,580 KB |
testcase_29 | AC | 507 ms
8,556 KB |
testcase_30 | AC | 444 ms
9,704 KB |
testcase_31 | AC | 250 ms
6,224 KB |
testcase_32 | AC | 474 ms
8,584 KB |
testcase_33 | AC | 796 ms
8,908 KB |
testcase_34 | AC | 479 ms
8,884 KB |
testcase_35 | AC | 1,054 ms
8,860 KB |
testcase_36 | AC | 609 ms
8,692 KB |
testcase_37 | AC | 959 ms
9,012 KB |
testcase_38 | AC | 773 ms
11,348 KB |
testcase_39 | AC | 823 ms
10,060 KB |
testcase_40 | AC | 819 ms
10,064 KB |
testcase_41 | AC | 819 ms
10,168 KB |
testcase_42 | AC | 815 ms
9,944 KB |
testcase_43 | AC | 811 ms
10,064 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define F first #define S second #define pi M_PI #define R cin>> #define Z class #define ll long long #define ln cout<<'\n' #define in(a) insert(a) #define pb(a) push_back(a) #define pd(a) printf("%.10f\n",a) #define mem(a) memset(a,0,sizeof(a)) #define all(c) (c).begin(),(c).end() #define iter(c) __typeof((c).begin()) #define rrep(i,n) for(int i=(int)(n)-1;i>=0;i--) #define REP(i,m,n) for(int i=(int)(m);i<(int)(n);i++) #define rep(i,n) REP(i,0,n) #define tr(it,c) for(iter(c) it=(c).begin();it!=(c).end();it++) template<Z A>void pr(A a){cout<<a;ln;} template<Z A,Z B>void pr(A a,B b){cout<<a<<' ';pr(b);} template<Z A,Z B,Z C>void pr(A a,B b,C c){cout<<a<<' ';pr(b,c);} template<Z A,Z B,Z C,Z D>void pr(A a,B b,C c,D d){cout<<a<<' ';pr(b,c,d);} template<Z A>void PR(A a,ll n){rep(i,n){if(i)cout<<' ';cout<<a[i];}ln;} ll check(ll n,ll m,ll x,ll y){return x>=0&&x<n&&y>=0&&y<m;} const ll MAX=1000000007,MAXL=1LL<<61,dx[4]={-1,0,1,0},dy[4]={0,1,0,-1}; typedef pair<int,int> P; int a[200][100][100]; map<int,int> ma; void Main() { int n,m; cin >> n >> m; rep(i,m)rep(j,n)rep(k,n) { int x; cin >> x; if(!ma.count(x)) { int s=ma.size(); ma[x]=s; } a[i][j][k]=x; } int ans=MAX; vector<bitset<40000> > v; rep(i,m) { vector<bitset<40000> > w; rep(j,n) { bitset<40000> b; rep(k,n) b.set(ma[a[i][j][k]]); w.pb(b); rep(k,v.size()) { bitset<40000> d=v[k]|b; int c=d.count(); if(c<ans) ans=c; } } rep(j,n) { bitset<40000> b; rep(k,n) b.set(ma[a[i][k][j]]); w.pb(b); rep(k,v.size()) { bitset<40000> d=v[k]|b; int c=d.count(); if(c<ans) ans=c; } } bitset<40000> b; rep(j,n) b.set(ma[a[i][j][j]]); w.pb(b); rep(k,v.size()) { bitset<40000> d=v[k]|b; int c=d.count(); if(c<ans) ans=c; } b=0; rep(j,n) b.set(ma[a[i][n-j-1][j]]); w.pb(b); rep(k,v.size()) { bitset<40000> d=v[k]|b; int c=d.count(); if(c<ans) ans=c; } rep(j,w.size()) v.pb(w[j]); } pr(ans-1); } int main(){ios::sync_with_stdio(0);cin.tie(0);Main();return 0;}