結果

問題 No.322 Geometry Dash
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-12-06 18:35:09
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,056 bytes
コンパイル時間 1,646 ms
コンパイル使用メモリ 162,292 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-05-06 01:18:26
合計ジャッジ時間 10,900 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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[10010], d[10010];

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