답안 #961098

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
961098 2024-04-11T13:45:56 Z The_Cryptic_TG A Plus B (IOI23_aplusb) C++17
컴파일 오류
0 ms 0 KB
#include <iostream>
#include <vector>
#include <set>
#define ll long long

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:6:1: error: 'vector' does not name a type
    6 | vector<ll> smallest_sums(ll n, vector<ll> a, vector<ll> b)
      | ^~~~~~