답안 #434484

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
434484 2021-06-21T11:05:00 Z medmdg 장난감 기차 (IOI17_train) C++14
컴파일 오류
0 ms 0 KB
#include<bits/std.h>
#include "train.h"
#define ll  int
vector<int> who_wins(vector<int> a, vector<int> r, vector<int> u, vector<int> v) {
        vector<ll> win;
        for(int i=0;i<u.size();i++){
            if(u[i]==v[i]){
                if(r[i]){
                    if(a[i])
                        while(win.size()<i)
                            win.push_back(1);
                }else{
                    if(!a[i])
                        win.push_back(0);
                }
            }
        }
        return win;
}


Compilation message

train.cpp:1:9: fatal error: bits/std.h: No such file or directory
    1 | #include<bits/std.h>
      |         ^~~~~~~~~~~~
compilation terminated.