結果
問題 | No.1537 私の代わりに仕事やっといてください。 |
ユーザー | pepper_aobuta |
提出日時 | 2021-05-22 06:42:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 113 ms / 2,000 ms |
コード長 | 2,205 bytes |
コンパイル時間 | 1,002 ms |
コンパイル使用メモリ | 93,956 KB |
実行使用メモリ | 9,672 KB |
最終ジャッジ日時 | 2024-05-05 01:18:13 |
合計ジャッジ時間 | 2,314 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 113 ms
9,672 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 10 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:74:23: warning: 'memo' may be used uninitialized [-Wmaybe-uninitialized] 74 | for(int i = 0 ; i < memo ; i++){ | ~~^~~~~~ main.cpp:66:9: note: 'memo' was declared here 66 | int memo; | ^~~~
ソースコード
#include <iostream> // cout, endl, cin #include <string> // string, to_string, stoi #include <vector> // vector #include <algorithm> // min, max, swap, sort, reverse, lower_bound, upper_bound #include <utility> // pair, make_pair #include <tuple> // tuple, make_tuple #include <cstdint> // int64_t, int*_t #include <cstdio> // printf #include <map> // map #include <queue> // queue, priority_queue #include <set> // set #include <stack> // stack #include <deque> // deque #include <unordered_map> // unordered_map #include <unordered_set> // unordered_set #include <bitset> // bitset #include <cctype> // isupper, islower, isdigit, toupper, tolower #include <iostream> // cout, endl, cin #include <string> // string, to_string, stoi #include <vector> // vector #include <algorithm> // min, max, swap, sort, reverse, lower_bound, upper_bound #include <utility> // pair, make_pair #include <tuple> // tuple, make_tuple #include <cstdint> // int64_t, int*_t #include <cstdio> // printf #include <map> // map #include <queue> // queue, priority_queue #include <set> // set #include <stack> // stack #include <deque> // deque #include <unordered_map> // unordered_map #include <unordered_set> // unordered_set #include <bitset> // bitset #include <cctype> // isupper, islower, isdigit, toupper, tolower using namespace std; using ll = long long; int main(){ int n; cin >> n; vector< pair<ll,int> > a; for(int i = 0 ; i < n ; i++){ ll b; cin >> b; pair<ll,int> p = make_pair(b , i + 1); a.push_back(p); } sort(a.begin(),a.end()); vector<int> ans; for(int i = 0 ; 2 * i + 1 < n ; i++){ ans.push_back(a[2 * i + 1].second); } for(int i = (n - 1) / 2 ; 2 * i >= 0 ; i--){ ans.push_back(a[2 * i].second); } int memo; for(int i = 0 ; i < ans.size() ; i++){ if(ans[i] == 1){ memo = i; break; } } for(int i = 0 ; i < memo ; i++){ ans.push_back(ans[i]); } ans.erase(ans.begin(),ans.begin() + memo); for(int i = 0 ; i < ans.size() ; i++){ cout << ans[i] << " "; } cout << 1; return 0; }