結果

問題 No.322 Geometry Dash
ユーザー firiexpfiriexp
提出日時 2019-11-28 23:29:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 819 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 89,608 KB
最終ジャッジ日時 2024-04-27 03:00:25
合計ジャッジ時間 2,208 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:25:26: error: no match for 'operator[]' (operand types are '__gnu_cxx::__alloc_traits<std::allocator<std::array<int, 3> >, std::array<int, 3> >::value_type' {aka 'std::array<int, 3>'} and 'int')
   25 |         scanf("%d", &v[i][0]);
      |                          ^
main.cpp:28:26: error: no match for 'operator[]' (operand types are '__gnu_cxx::__alloc_traits<std::allocator<std::array<int, 3> >, std::array<int, 3> >::value_type' {aka 'std::array<int, 3>'} and 'int')
   28 |         scanf("%d", &v[i][1]);
      |                          ^
main.cpp:29:13: error: no match for 'operator[]' (operand types are '__gnu_cxx::__alloc_traits<std::allocator<std::array<int, 3> >, std::array<int, 3> >::value_type' {aka 'std::array<int, 3>'} and 'int')
   29 |         v[i][2] = i+1;
      |             ^
main.cpp:31:35: error: 'a' has incomplete type
   31 |     sort(v.begin(),v.end(), [&](P a, P b){
      |                                 ~~^
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/bits/stl_map.h:63,
                 from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/map:61,
                 from main.cpp:5:
/home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/tuple:1595:45: note: declaration of 'using P = struct std::array<int, 3>' {aka 'struct std::array<int, 3>'}
 1595 |   template<typename _Tp, size_t _Nm> struct array;
      |                                             ^~~~~
main.cpp:31:40: error: 'b' has incomplete type
   31 |     sort(v.begin(),v.end(), [&](P a, P b){
      |                                      ~~^
/home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/tuple:1595:45: note: declaration of 'using P = struct std::array<int, 3>' {aka 'struct std::array<int, 3>'}
 1595 |   template<typename _Tp, size_t _Nm> struct array;
      |                                             ^~~~~
main.cpp:36:26: error: no match for 'operator[]' (opera

ソースコード

diff #

#include <limits>
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

int main() {
    int n;
    cin >> n;
    using P = array<int, 3>;
    vector<P> v(n);
    for (int i = 0; i < n; ++i) {
        scanf("%d", &v[i][0]);
    }
    for (int i = 0; i < n; ++i) {
        scanf("%d", &v[i][1]);
        v[i][2] = i+1;
    }
    sort(v.begin(),v.end(), [&](P a, P b){
        return a[0]*b[1] > a[1]*b[0];
    });
    for (int i = 0; i < n; ++i) {
        if(i) printf(" ");
        printf("%d", v[i][2]);
    }
    puts("");
    return 0;
}
0