結果
問題 | No.282 おもりと天秤(2) |
ユーザー | Kmcode1 |
提出日時 | 2015-09-18 23:04:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,634 ms / 5,000 ms |
コード長 | 2,097 bytes |
コンパイル時間 | 1,255 ms |
コンパイル使用メモリ | 114,316 KB |
実行使用メモリ | 32,328 KB |
平均クエリ数 | 267.12 |
最終ジャッジ日時 | 2024-07-16 21:20:29 |
合計ジャッジ時間 | 18,707 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
24,836 KB |
testcase_01 | AC | 34 ms
24,964 KB |
testcase_02 | AC | 27 ms
25,220 KB |
testcase_03 | AC | 26 ms
24,580 KB |
testcase_04 | AC | 26 ms
24,580 KB |
testcase_05 | AC | 31 ms
24,964 KB |
testcase_06 | AC | 36 ms
25,216 KB |
testcase_07 | AC | 26 ms
24,964 KB |
testcase_08 | AC | 36 ms
24,580 KB |
testcase_09 | AC | 25 ms
24,836 KB |
testcase_10 | AC | 332 ms
24,964 KB |
testcase_11 | AC | 1,548 ms
31,064 KB |
testcase_12 | AC | 745 ms
25,220 KB |
testcase_13 | AC | 992 ms
25,176 KB |
testcase_14 | AC | 1,291 ms
29,272 KB |
testcase_15 | AC | 1,435 ms
31,576 KB |
testcase_16 | AC | 104 ms
24,836 KB |
testcase_17 | AC | 982 ms
24,964 KB |
testcase_18 | AC | 1,221 ms
28,120 KB |
testcase_19 | AC | 1,218 ms
28,120 KB |
testcase_20 | AC | 1,634 ms
32,072 KB |
testcase_21 | AC | 1,620 ms
32,072 KB |
testcase_22 | AC | 1,630 ms
32,328 KB |
testcase_23 | AC | 25 ms
24,812 KB |
コンパイルメッセージ
main.cpp: In function ‘void output(std::vector<std::pair<int, int> >)’: main.cpp:48:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 48 | scanf("%s", ss); | ~~~~~^~~~~~~~~~ main.cpp:59:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 59 | scanf("%s", ss); | ~~~~~^~~~~~~~~~ main.cpp: In function ‘int main()’: main.cpp:68:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 68 | scanf("%d", &n); | ~~~~~^~~~~~~~~~
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<cctype> #include<cstdlib> #include<algorithm> #include<bitset> #include<vector> #include<list> #include<deque> #include<queue> #include<map> #include<set> #include<stack> #include<cmath> #include<sstream> #include<fstream> #include<iomanip> #include<ctime> #include<complex> #include<functional> #include<climits> #include<cassert> #include<iterator> #include<unordered_map> #include<unordered_set> //#include<quadmath.h> using namespace std; vector<int> v; int n; #define MAX 502 bool cm[MAX][MAX]; set<int> s[MAX]; void output(vector<pair<int,int> > v){ printf("?"); for (int i = 0; i < v.size(); i++){ printf(" %d %d", v[i].first, v[i].second); } for (int i = v.size(); i < n; i++){ printf(" %d %d", 0, 0); } puts(""); fflush(stdout); fflush(stdin); char ss[3]; for (int i = 0; i < v.size(); i++){ scanf("%s", ss); if (ss[0] == '<'){ cm[v[i].first][v[i].second] = true; } else{ cm[v[i].second][v[i].first] = true; } s[v[i].first].erase(v[i].second); s[v[i].second].erase(v[i].first); } for (int i = v.size(); i < n; i++){ scanf("%s", ss); } fflush(stdin); fflush(stdout); } bool cmp(int a, int b){ return cm[a][b]; } int main(){ scanf("%d", &n); for (int i = 1; i <= n; i++){ v.push_back(i); } int summ = 0; for (int i = 1; i <= n; i++){ for (int j = 1; j <= n; j++){ if (i == j){ continue; } s[i].insert(j); summ++; } } int countt = 0; while (countt < summ){ set<int> used; used.clear(); vector<pair<int, int> > v; for (int i = 1; i <= n; i++){ if (used.count(i)){ continue; } set<int>::iterator ite; for (ite = s[i].begin(); ite != s[i].end(); ite++){ if (used.count(*ite)){ } else{ v.push_back(make_pair(i,(*ite))); used.insert(i); used.insert((*ite)); break; } } } countt += v.size() * 2; output(v); } sort(v.begin(), v.end(), cmp); printf("!"); for (int i = 0; i < v.size(); i++){ printf(" %d", v[i]); } puts(""); fflush(stdout); fflush(stdin); return 0; }