제출 #366100

#제출 시각아이디문제언어결과실행 시간메모리
366100Jarif_RahmanBitaro’s Party (JOI18_bitaro)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
#define pb push_back
#define f first
#define sc second
using namespace std;
typedef long long int ll;
typedef string str;
int sq;
vector<bool> bl;
bool comp(pair<int, int> a, pair<int, int> b){return a > b;}
void merge(vector<pair<int, int>> a, vector<pair<int, int>> &b){
    for(int i = 0; i < b.size(); i++) bl[b[i].sc] = 1;
    for(int i = 0; i < a.size(); i++) if(!bl[a[i].sc]) bl.pb(a[i]);
    for(int i = 0; i < b.size(); i++) bl[b[i].sc] = 0;
	int el = min(sq, (int)b.size());
	nth_element(b.begin(), b.begin()+el, b.end(), comp);
	while(b.size() > sq) b.pop_back();
}
int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int n, m, q; cin >> n >> m >> q;
    bl.resize(n, 0);
    sq = sqrt(n+0.0);
    vector<vector<int>> v(n);
    for(int i = 0; i < m; i++){
        int a, b; cin >> a >> b; a--, b--;
        v[a].pb(b);
    }
    vector<vector<pair<int, int>>> dps(n);
    for(int i = 0; i < n; i++) dps[i].pb({0, i});
    for(int i = 0; i < n; i++){
        auto mg = dps[i];
        for(auto &[c, nd]: mg) c++;
        for(int x: v[i]) merge(mg, dps[x]);
    }
    vector<bool> busy(n, 0);
    while(q--){
        int tj, yj; cin >> tj >> yj;
        tj--;
        vector<int> cbs(yj);
        for(int &x: cbs) cin >> x, x--, busy[x] = 1;
        if(yj < sq){
            int ans = busy[tj] ? -1 : 0;
            for(auto [c, nd]: dps[tj]) if(!busy[nd]) ans = max(ans, c);
            cout << ans << "\n";
            for(int x: cbs) busy[x] = 0;
            continue;
        }
        vector<int> dp(n, -1);
        for(int i = 0; i < n; i++){
            if(busy[i] && dp[i] == -1) continue;
            dp[i] = max(dp[i], 0);
            for(int x: v[i]) dp[x] = max(dp[x], dp[i]+1);
        }
        cout << dp[tj] << "\n";
        for(int x: cbs) busy[x] = 0;
    }
}

컴파일 시 표준 에러 (stderr) 메시지

bitaro.cpp: In function 'void merge(std::vector<std::pair<int, int> >, std::vector<std::pair<int, int> >&)':
bitaro.cpp:12:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   12 |     for(int i = 0; i < b.size(); i++) bl[b[i].sc] = 1;
      |                    ~~^~~~~~~~~~
bitaro.cpp:13:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   13 |     for(int i = 0; i < a.size(); i++) if(!bl[a[i].sc]) bl.pb(a[i]);
      |                    ~~^~~~~~~~~~
bitaro.cpp:13:66: error: cannot convert '__gnu_cxx::__alloc_traits<std::allocator<std::pair<int, int> >, std::pair<int, int> >::value_type' {aka 'std::pair<int, int>'} to 'bool'
   13 |     for(int i = 0; i < a.size(); i++) if(!bl[a[i].sc]) bl.pb(a[i]);
      |                                                                  ^
In file included from /usr/include/c++/9/vector:68,
                 from /usr/include/c++/9/functional:62,
                 from /usr/include/c++/9/pstl/glue_algorithm_defs.h:13,
                 from /usr/include/c++/9/algorithm:71,
                 from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65,
                 from bitaro.cpp:1:
/usr/include/c++/9/bits/stl_bvector.h:953:22: note:   initializing argument 1 of 'void std::vector<bool, _Alloc>::push_back(bool) [with _Alloc = std::allocator<bool>]'
  953 |       push_back(bool __x)
      |                 ~~~~~^~~
bitaro.cpp:14:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   14 |     for(int i = 0; i < b.size(); i++) bl[b[i].sc] = 0;
      |                    ~~^~~~~~~~~~
bitaro.cpp:17:17: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   17 |  while(b.size() > sq) b.pop_back();
      |        ~~~~~~~~~^~~~