結果
問題 | No.355 数当てゲーム(2) |
ユーザー |
![]() |
提出日時 | 2016-04-02 14:59:38 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 1,881 bytes |
コンパイル時間 | 734 ms |
コンパイル使用メモリ | 66,328 KB |
実行使用メモリ | 25,324 KB |
平均クエリ数 | 26.62 |
最終ジャッジ日時 | 2024-07-16 23:26:02 |
合計ジャッジ時間 | 5,065 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 52 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:31:35: warning: ‘pre’ may be used uninitialized in this function [-Wmaybe-uninitialized] 31 | d = pre; | ~~^~~~~
ソースコード
#include<iostream> #include<climits> #include<vector> #include<algorithm> void print(int a, int b, int c, int d) { std::cout << a << " " << b << " " << c << " " << d << std::endl; } int main() { int a = 0, b = 1, c = 2, d = 3; int hit, blow; print(a, b, c, d); std::cin >> hit >> blow; if (hit == 4) return 0; int h, bl, pre; if (hit + blow != 4) { while (d < 10) { print(a, b, c, d); std::cin >> h >> bl; if (h == 4) return 0; if (h + bl > hit + blow) { hit = h; blow = bl; break; } if (h + bl < hit + blow) { d = pre; break; } pre = d; d++; } } if (hit + blow != 4) { while (c < 10) { if (c == d) { c++; continue; } print(a, b, c, d); std::cin >> h >> bl; if (h == 4) return 0; if (h + bl > hit + blow) { hit = h; blow = bl; break; } if (h + bl < hit + blow) { c = pre; break; } pre = c; c++; } } if (hit + blow != 4) { while (b < 10) { if (b == c || b == d) { b++; continue; } print(a, b, c, d); std::cin >> h >> bl; if (h == 4) return 0; if (h + bl > hit + blow) { hit = h; blow = bl; break; } if (h + bl < hit + blow) { b = pre; break; } pre = b; b++; } } if (hit + blow != 4) { while (a < 10) { if (a == b || a == c || a == d) { a++; continue; } print(a, b, c, d); std::cin >> h >> bl; if (h == 4) return 0; if (h + bl > hit + blow) { hit = h; blow = bl; break; } if (h + bl < hit + blow) { a = pre; break; } pre = a; a++; } } std::vector<int> v; v.push_back(a); v.push_back(b); v.push_back(c); v.push_back(d); std::sort(v.begin(), v.end()); do { print(v[0], v[1], v[2], v[3]); std::cin >> h >> bl; if (h == 4) return 0; } while (std::next_permutation(v.begin(), v.end())); return 0; }