結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | mai |
提出日時 | 2016-12-04 00:59:00 |
言語 | Text (cat 8.3) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,196 bytes |
コンパイル時間 | 124 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 17:41:04 |
合計ジャッジ時間 | 531 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
// https://yukicoder.me/problems/no/452/submissions // 再公開されたら提出する #include<bits/stdc++.h> using namespace std; typedef unsigned int uint; typedef long long int ll; typedef unsigned long long int ull; #define debugv(v) printf("L%d %s => ",__LINE__,#v);for(auto e:v){cout<<e<<" ";}cout<<endl; #define debugm(m) printf("L%d %s is..\n",__LINE__,#m);for(auto v:m){for(auto e:v){cout<<e<<" ";}cout<<endl;} #define debuga(m,w) printf("L%d %s is => ",__LINE__,#m);for(int x=0;x<(w);x++){cout<<(m)[x]<<" ";}cout<<endl; #define debugaa(m,w,h) printf("L%d %s is..\n",__LINE__,#m);for(int y=0;y<(h);y++){for(int x=0;x<(w);x++){cout<<(m)[x][y]<<" ";}cout<<endl;} #define ALL(v) (v).begin(),(v).end() #define BIGINT 0x7FFFFFFF #define E107 1000000007 void printbit(int u){if(u==0)cout<<0;else{int s=0,k=0;for(;0<u;u>>=1,k++)s=(s<<1)|(u&1);for(;0<k--;s>>=1)cout<<(s&1);}} #define TIME chrono::system_clock::now() #define MILLISEC(t) (chrono::duration_cast<chrono::milliseconds>(t).count()) template<typename T1,typename T2> ostream& operator <<(ostream &o,const pair<T1,T2> p){o<<"("<<p.first<<":"<<p.second<<")";return o;} int width,height; int m,n; vector<vector<int>> bingo[200]; int cpa[105],cpb[105]; int main(){ int i,j,k; int x,y,a,b; cin >> n >> m; for (i=0;i<m;i++){ bingo[i].resize(n); for (y=0;y<n;y++){ bingo[i][y].resize(n); for (x=0;x<n;x++){ scanf("%d",&bingo[i][y][x]); } } } int result = n*2; for (i=0;i<m-1;i++){ for (a=0;a<n*2+2;a++){ if (a<n){ for (k=0;k<n;k++){ cpa[k] = bingo[i][a][k]; } }else if (a<2*n){ for (k=0;k<n;k++){ cpa[k] = bingo[i][k][a-n]; } }else if (a==2*n){ for (k=0;k<n;k++){ cpa[k] = bingo[i][k][k]; } }else{ for (k=0;k<n;k++){ cpa[k] = bingo[i][k][n-k-1]; } } for (j=i+1;j<m;j++){ for (b=0;b<n*2+2;b++){ if (b<n){ for (k=0;k<n;k++){ cpb[k] = bingo[j][b][k]; } }else if (b<2*n){ for (k=0;k<n;k++){ cpb[k] = bingo[j][k][b-n]; } }else if (b==2*n){ for (k=0;k<n;k++){ cpb[k] = bingo[j][k][k]; } }else{ for (k=0;k<n;k++){ cpb[k] = bingo[j][k][n-k-1]; } } set<int> s; for (k=0;k<n;k++){ s.insert(cpa[k]); s.insert(cpb[k]); } result = min(result,(int)s.size()); } } } } cout << result-1 << endl; return 0; }