結果
問題 | No.452 横着者のビンゴゲーム |
ユーザー | ei1333333 |
提出日時 | 2016-12-03 13:12:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,321 bytes |
コンパイル時間 | 1,706 ms |
コンパイル使用メモリ | 167,128 KB |
実行使用メモリ | 13,880 KB |
最終ジャッジ日時 | 2024-05-05 18:03:57 |
合計ジャッジ時間 | 6,402 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,524 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:37:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 37 | scanf("%d %d", &N, &M); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:41:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 41 | scanf("%d", &C[i][j][k]); | ~~~~~^~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; const int INF = 1 << 30; int N, M, C[200][100][100]; vector< vector< int > > vec[200]; int rac() { int ret = INF; for(int i = 0; i < M; i++) { for(auto &vc : vec[i]) sort(begin(vc), end(vc)); } for(int i = 0; i < M; i++) { for(auto &vc : vec[i]) { for(int j = i + 1; j < M; j++) { for(auto &vv : vec[j]) { int match = 0, a = 0, b = 0; while(a < N || b < N) { if(vc[a] == vv[b]) ++match; if(vc[a] < vv[b]) ++a; else ++b; } ret = min(ret, N + N - match - 1); } } } } return (max(1, ret)); } int main() { scanf("%d %d", &N, &M); for(int i = 0; i < M; i++) { for(int j = 0; j < N; j++) { for(int k = 0; k < N; k++) { scanf("%d", &C[i][j][k]); } } } for(int i = 0; i < M; i++) { vector< int > vc(N); for(int j = 0; j < N; j++) { for(int k = 0; k < N; k++) vc[k] = C[i][j][k]; vec[i].emplace_back(vc); for(int k = 0; k < N; k++) vc[k] = C[i][k][j]; vec[i].emplace_back(vc); } for(int k = 0; k < N; k++) vc[k] = C[i][k][k]; vec[i].emplace_back(vc); for(int k = 0; k < N; k++) vc[k] = C[i][k][N - k - 1]; vec[i].emplace_back(vc); } cout << rac() << endl; }