結果
問題 | No.850 企業コンテスト2位 |
ユーザー | tnakao0123 |
提出日時 | 2019-07-07 23:57:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 1,408 bytes |
コンパイル時間 | 567 ms |
コンパイル使用メモリ | 85,288 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 200.11 |
最終ジャッジ日時 | 2024-07-16 17:43:48 |
合計ジャッジ時間 | 2,834 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
24,836 KB |
testcase_01 | AC | 20 ms
24,836 KB |
testcase_02 | AC | 18 ms
24,836 KB |
testcase_03 | AC | 21 ms
24,964 KB |
testcase_04 | AC | 21 ms
25,476 KB |
testcase_05 | AC | 21 ms
25,220 KB |
testcase_06 | AC | 20 ms
24,964 KB |
testcase_07 | AC | 24 ms
25,220 KB |
testcase_08 | AC | 27 ms
24,580 KB |
testcase_09 | AC | 26 ms
24,836 KB |
testcase_10 | AC | 31 ms
25,220 KB |
testcase_11 | AC | 30 ms
25,220 KB |
testcase_12 | AC | 30 ms
24,836 KB |
testcase_13 | AC | 28 ms
24,580 KB |
testcase_14 | AC | 28 ms
25,476 KB |
testcase_15 | AC | 30 ms
24,836 KB |
testcase_16 | AC | 28 ms
24,836 KB |
testcase_17 | AC | 29 ms
24,964 KB |
testcase_18 | AC | 28 ms
24,836 KB |
testcase_19 | AC | 29 ms
24,580 KB |
testcase_20 | AC | 29 ms
24,836 KB |
testcase_21 | AC | 30 ms
24,964 KB |
testcase_22 | AC | 30 ms
25,220 KB |
testcase_23 | AC | 30 ms
24,580 KB |
testcase_24 | AC | 30 ms
24,964 KB |
testcase_25 | AC | 31 ms
24,580 KB |
testcase_26 | AC | 30 ms
25,220 KB |
testcase_27 | AC | 20 ms
24,812 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:44:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 44 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:56:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 56 | scanf("%d", &x); | ~~~~~^~~~~~~~~~ main.cpp:72:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 72 | scanf("%d", &x); | ~~~~~^~~~~~~~~~
ソースコード
/* -*- coding: utf-8 -*- * * 850.cc: No.850 企業コンテスト2位 - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 300; /* typedef */ /* global variables */ int as[MAX_N], bs[MAX_N]; int ms[MAX_N][MAX_N], mns[MAX_N]; /* subroutines */ /* main */ int main() { int n; scanf("%d", &n); for (int i = 0; i < n; i++) as[i] = i; for (int m = n; m > 1;) { int k = 0; for (int i = 0; i + 1 < m; i += 2) { int a0 = as[i], a1 = as[i + 1]; ms[a0][mns[a0]++] = a1; ms[a1][mns[a1]++] = a0; printf("? %d %d\n", a0 + 1, a1 + 1); fflush(stdout); int x; scanf("%d", &x); x--; bs[k++] = x; } if (m & 1) bs[k++] = as[m - 1]; memcpy(as, bs, sizeof(bs)); m = k; } int ch = as[0]; //for (int i = 0; i < mc; i++) printf("%d ", mas[i]); putchar('\n'); int sec = ms[ch][0]; for (int i = 1; i < mns[ch]; i++) { printf("? %d %d\n", sec + 1, ms[ch][i] + 1); fflush(stdout); int x; scanf("%d", &x); x--; sec = x; } printf("! %d\n", sec + 1); fflush(stdout); return 0; }