結果
問題 | No.322 Geometry Dash |
ユーザー |
![]() |
提出日時 | 2020-01-28 00:39:27 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 88 ms / 2,000 ms |
コード長 | 741 bytes |
コンパイル時間 | 1,767 ms |
コンパイル使用メモリ | 175,148 KB |
実行使用メモリ | 7,140 KB |
最終ジャッジ日時 | 2024-09-14 16:54:10 |
合計ジャッジ時間 | 8,306 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 27 |
ソースコード
#include <bits/stdc++.h>#define rep(i,n) for(int i = 0; i < (n); ++i)#define srep(i,s,t) for (int i = s; i < t; ++i)#define drep(i,n) for(int i = (n)-1; i >= 0; --i)using namespace std;typedef long long int ll;typedef pair<int,int> P;#define yn {puts("Yes");}else{puts("No");}#define MAX_N 200005int main() {int n;cin >> n;double t[n], d[n];rep(i,n)cin >> t[i];rep(i,n)cin >> d[i];vector<pair<double,int>> v;rep(i,n){pair<double,int> p;p.first = d[i] / t[i];p.second = i + 1;v.push_back(p);}sort(v.begin(), v.end());rep(i,n){cout << v[i].second;if(i != n - 1)cout << ' ';else cout << endl;}return 0;}