結果
| 問題 | No.3 ビットすごろく |
| コンテスト | |
| ユーザー |
stone_725
|
| 提出日時 | 2017-10-07 12:13:02 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 644 bytes |
| 記録 | |
| コンパイル時間 | 1,106 ms |
| コンパイル使用メモリ | 177,844 KB |
| 実行使用メモリ | 7,976 KB |
| 最終ジャッジ日時 | 2026-05-12 05:54:57 |
| 合計ジャッジ時間 | 2,157 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 18 WA * 15 |
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:45:10: warning: ignoring return value of 'std::basic_ostream<_CharT, _Traits>* std::basic_ios<_CharT, _Traits>::tie() const [with _CharT = char; _Traits = std::char_traits<char>]', declared with attribute 'nodiscard' [-Wunused-result]
45 | cin.tie();
| ~~~~~~~^~
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/ios:48,
from /home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/istream:42,
from /home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/sstream:42,
from /home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/complex:50,
from /home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/ccomplex:43,
from /home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/x86_64-pc-linux-gnu/bits/stdc++.h:133,
from main.cpp:1:
/home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0_1/include/c++/15/bits/basic_ios.h:310:7: note: declared here
310 | tie() const
| ^~~
ソースコード
#include "bits/stdc++.h"
using namespace std;
int n;
bool check[10000];
int dfs(int now)
{
if (now == n) {
return 1;
}
if(now < 1 || n < now || check[now]) {
return -1;
}
check[now] = true;
int cnt = 0, c = now;
while (c) {
cnt++;
c &= c - 1;
}
int score1 = dfs(now + cnt);
int score2 = dfs(now - cnt);
if (~score1 && ~score2) {
return min(score1, score2) + 1;
}
if(~score1) {
return score1 + 1;
}
if(~score2) {
return score2 + 1;
}
return -1;
}
static void solve()
{
cin >> n;
cout << dfs(1) << "\n";
}
int main()
{
ios::sync_with_stdio(false);
cin.tie();
solve();
}
stone_725