Submission #701578

#TimeUsernameProblemLanguageResultExecution timeMemory
701578PCTprobabilityRoads (CEOI20_roads)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; const ll mod = 1000000007; #define fi first #define se second #define pb push_back int main(){ ll n; cin>>n; map<ll,vector<pair<ll,ll>>> m; for(int i=0;i<n;i++){ ll a,b,c,d; cin>>a>>b>>c>>d; m[a].pb({b,d}); } vector<pair<ll,vector<pair<ll,ll>>>> d; for(auto e:m){ sor(e.se); d.pb({e.fi,e.se}); for(int i=0;i+1<e.se.size();i++){ cout<<e.fi<<" "<<e.se[i].se<<" "<<e.fi<<" "<<e.se[i+1].fi<<endl; } } for(int i=0;i+1<d.size();i++){ cout<<d[i].fi<<" "<<d[i].se.back().se<<" "<<d[i+1].fi<<" "<<d[i].se[0].fi<<endl; } }

Compilation message (stderr)

roads.cpp: In function 'int main()':
roads.cpp:20:5: error: 'sor' was not declared in this scope
   20 |     sor(e.se);
      |     ^~~
roads.cpp:22:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   22 |     for(int i=0;i+1<e.se.size();i++){
      |                 ~~~^~~~~~~~~~~~
roads.cpp:26:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, std::vector<std::pair<long long int, long long int> > > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   26 |   for(int i=0;i+1<d.size();i++){
      |               ~~~^~~~~~~~~