結果
問題 | No.1537 私の代わりに仕事やっといてください。 |
ユーザー | spipipike |
提出日時 | 2021-06-06 20:20:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 112 ms / 2,000 ms |
コード長 | 640 bytes |
コンパイル時間 | 1,525 ms |
コンパイル使用メモリ | 175,500 KB |
実行使用メモリ | 7,540 KB |
最終ジャッジ日時 | 2024-05-05 01:55:05 |
合計ジャッジ時間 | 2,348 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 112 ms
7,540 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 11 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:32:17: warning: 's' may be used uninitialized [-Wmaybe-uninitialized] 32 | if((i+1)%n==s) break;; | ^~ main.cpp:26:13: note: 's' was declared here 26 | int s; | ^
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for (int i = 0; i < (n); i++) using namespace std; using ll = long long; using P = pair<int,int>; int main(){ int n; cin>>n; vector<P> ai(n); rep(i, n){ int a; cin>>a; ai[i]=P(a, i); } sort(ai.begin(), ai.end()); vector<int> b, c; rep(i, n){ if(i%2==0) b.push_back(ai[i].second); else c.push_back(ai[i].second); } reverse(c.begin(), c.end()); for(int e : b) c.push_back(e); int s; rep(i, n) if(c[i]==0) s=i; vector<int> ans; for(int i=s; ; i=(i+1)%n){ ans.push_back(c[i]); if((i+1)%n==s) break;; } for(int e : ans) cout<<(e+1)<<" "; cout<<1<<endl; return 0; }