結果

問題 No.322 Geometry Dash
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-12-06 18:38:41
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,058 bytes
コンパイル時間 1,569 ms
コンパイル使用メモリ 162,952 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 01:19:10
合計ジャッジ時間 11,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 132 ms
5,608 KB
testcase_23 AC 113 ms
5,524 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 113 ms
5,612 KB
testcase_28 AC 101 ms
5,600 KB
testcase_29 AC 74 ms
5,376 KB
testcase_30 AC 81 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vint;
typedef pair<int,int> pint;
typedef vector<pint> vpint;
#define rep(i,n) for(int i=0;i<(n);i++)
#define reps(i,f,n) for(int i=(f);i<(n);i++)
#define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++)
#define all(v) (v).begin(),(v).end()
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define chmax(a, b) a = (((a)<(b)) ? (b) : (a))
#define chmin(a, b) a = (((a)>(b)) ? (b) : (a))
const int MOD = 1e9 + 7;
const int INF = 1e9;

int n;
double t[200010], d[200010];

bool asc(const int& l, const int& r) {
	double a = t[l] * (d[l] * 0.5 + d[r] + 1.0) + t[r] * (d[r] * 0.5 + 1.0);
	double b = t[r] * (d[r] * 0.5 + d[l] + 1.0) + t[l] * (d[l] * 0.5 + 1.0);
	if(a < b) return false;
	else return true;
}

vector<int> ans;
int main(void){
	cin >> n;
	rep(i, n) cin >> t[i];
	rep(i, n) cin >> d[i];
	rep(i, n) ans.push_back(i);

	sort(all(ans), asc);
	rep(i, n){
		printf("%d ", ans[i] + 1);
	}
	printf("\n");
	return 0;
}
0