답안 #961093

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
961093 2024-04-11T13:43:53 Z The_Cryptic_TG A Plus B (IOI23_aplusb) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
vector<ll> smallest_sums(ll n, vector<ll> a, vector<ll> b)
    {
        multiset<ll> s;
        loop1(i, n)
        {
            loop(j, n / i)
            {
                s.insert(a[i - 1] + b[j]);
            }
        }
        auto it = s.begin();
        ll k = n;
        vector <ll> ans;
        while (k--)
        {
            ans.push_back(*it);
            it++;
        }
        return ans;
    }

Compilation message

aplusb.cpp:2:1: error: 'vector' does not name a type
    2 | vector<ll> smallest_sums(ll n, vector<ll> a, vector<ll> b)
      | ^~~~~~