結果
問題 | No.322 Geometry Dash |
ユーザー | 0w1 |
提出日時 | 2017-01-07 16:32:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,203 bytes |
コンパイル時間 | 2,235 ms |
コンパイル使用メモリ | 172,396 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-09 22:05:57 |
合計ジャッジ時間 | 15,967 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 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 | WA | - |
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 | 56 ms
5,376 KB |
testcase_23 | AC | 48 ms
5,376 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 48 ms
5,376 KB |
testcase_28 | AC | 45 ms
5,376 KB |
testcase_29 | AC | 32 ms
5,376 KB |
testcase_30 | AC | 35 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector< int > vi; typedef vector< vi > vvi; typedef vector< ll > vl; typedef vector< vl > vvl; typedef pair< int, int > pii; typedef vector< pii > vp; typedef vector< double > vd; typedef vector< vd > vvd; typedef vector< string > vs; template< class T1, class T2 > int upmin( T1 &x, T2 v ){ if( x > v ){ x = v; return 1; } return 0; } template< class T1, class T2 > int upmax( T1 &x, T2 v ){ if( x < v ){ x = v; return 1; } return 0; } const int INF = 0x3f3f3f3f; int N; vi T; vi D; void init(){ cin >> N; T = vi( N ); for( int i = 0; i < N; ++i ){ cin >> T[ i ]; } D = vi( N ); for( int i = 0; i < N; ++i ){ cin >> D[ i ]; } } vi ans_id; void preprocess(){ ans_id = vi( N ); for( int i = 0; i < N; ++i ){ ans_id[ i ] = i; } sort( ans_id.begin(), ans_id.end(), [ & ]( int i, int j ){ return D[ i ] * T[ j ] <= D[ j ] * T[ i ]; } ); } void solve(){ for( int i = 0; i < N; ++i ){ cout << ans_id[ i ] + 1 << " \n"[ i + 1 == N ]; } } signed main(){ ios::sync_with_stdio( 0 ); init(); preprocess(); solve(); return 0; }