結果
問題 | No.452 横着者のビンゴゲーム |
ユーザー | ei1333333 |
提出日時 | 2016-12-03 13:12:52 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,321 bytes |
コンパイル時間 | 2,220 ms |
コンパイル使用メモリ | 167,592 KB |
実行使用メモリ | 13,632 KB |
最終ジャッジ日時 | 2024-11-27 17:52:37 |
合計ジャッジ時間 | 12,038 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,632 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 1 ms
6,820 KB |
testcase_14 | TLE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 109 ms
6,816 KB |
testcase_22 | WA | - |
testcase_23 | AC | 204 ms
6,820 KB |
testcase_24 | AC | 22 ms
9,620 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 59 ms
6,816 KB |
testcase_29 | WA | - |
testcase_30 | AC | 140 ms
6,820 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 16 ms
7,848 KB |
testcase_38 | RE | - |
testcase_39 | AC | 321 ms
6,816 KB |
testcase_40 | AC | 314 ms
6,816 KB |
testcase_41 | WA | - |
testcase_42 | AC | 315 ms
6,820 KB |
testcase_43 | AC | 320 ms
10,400 KB |
コンパイルメッセージ
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; }