結果
問題 | No.99 ジャンピング駒 |
ユーザー | chiyoda |
提出日時 | 2016-06-28 18:38:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 835 bytes |
コンパイル時間 | 413 ms |
コンパイル使用メモリ | 59,844 KB |
最終ジャッジ日時 | 2024-11-14 19:45:50 |
合計ジャッジ時間 | 925 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:33:21: error: ‘cotinue’ was not declared in this scope; did you mean ‘ctime’? 33 | if(x[i] == inf) cotinue; | ^~~~~~~ | ctime
ソースコード
#include <algorithm> #include <cstdio> #include <iostream> #include <string> #include <vector> #include <map> #define rep(i,n) for (int i=0; i<n; ++i) #define FOR(i,a,b) for (int i=a; i<b+1; ++i) #define pb(x) push_back(x) #define ll long long using namespace std; const int inf =1500000000; int main () { int n; cin >> n; int x[n]; rep(i,n) cin >> x[i]; sort(x, x + n); int serials = 1, cnt = n; FOR(i,1,n - 1) { if (x[i - 1] +1== x[i]) { serials++; x[i - 1] = inf; } else { cnt -= serials - serials % 2; serials = 1; x[i - i%2] = inf; } } bool r[2] ={false, false}; rep(i,n) { if(x[i] == inf) cotinue; int tmp = i%2; if(r[tmp]) { cnt -=2; r[tmp] = false; } else { r[tmp] = true; } } cout << cnt << endl; return 0; }