Main.cpp:1:31: warning: extra tokens at end of #include directive
1 | #include <bits/stdc++.h>using namespace std;#define ll long long#define pb push_back#define For(i, n) for(int (i) = 0; (i) < (n); (i)++)#define debug(x) cout << #x << " : " << x << endl << flush#define endl '\n'#define sz(x) (ll)x.size()#define arr(x) array<ll, x>const ll INF = 1e18;vector<vector<bool>> a, vis;arr(2) s, e;ll n, m, k;ll ans;vector<arr(2)> v, g;vector<set<ll>> row, col;ll cnt;void bfs(){ cnt++; // debug(cnt); while(!v.empty()) { auto x = v.back(); // debug(x[0]); // debug(x[1]); v.pop_back(); if(x[0] != 1 and !vis[x[0] - 1][x[1]]) { if(a[x[0] - 1][x[1]]) g.pb({x[0] - 1, x[1]}); else { vis[x[0] - 1][x[1]] = 1; v.pb({x[0] - 1, x[1]}); } } if(x[0] != n and !vis[x[0] + 1][x[1]]) { if(a[x[0] + 1][x[1]]) g.pb({x[0] + 1, x[1]}); else { v.pb({x[0] + 1, x[1]}); vis[x[0] + 1][x[1]] = 1; } } if(x[1] != 1 and !vis[x[0]][x[1] - 1]) { if(a[x[0]][x[1] - 1]) g.pb({x[0], x[1] - 1}); else { v.pb({x[0], x[1] - 1}); vis[x[0]][x[1] - 1] = 1; } } if(x[1] != m and !vis[x[0]][x[1] + 1]) { if(a[x[0]][x[1] + 1]) g.pb({x[0], x[1] + 1}); else { v.pb({x[0], x[1] + 1}); vis[x[0]][x[1] + 1] = 1; } } }}int main(){ ios_base::sync_with_stdio(0);cin.tie(0); cin >> n >> m >> k;
| ^~~~~~~~~
Main.cpp:1:10: fatal error: bits/stdc++.h>usin: No such file or directory
1 | #include <bits/stdc++.h>using namespace std;#define ll long long#define pb push_back#define For(i, n) for(int (i) = 0; (i) < (n); (i)++)#define debug(x) cout << #x << " : " << x << endl << flush#define endl '\n'#define sz(x) (ll)x.size()#define arr(x) array<ll, x>const ll INF = 1e18;vector<vector<bool>> a, vis;arr(2) s, e;ll n, m, k;ll ans;vector<arr(2)> v, g;vector<set<ll>> row, col;ll cnt;void bfs(){ cnt++; // debug(cnt); while(!v.empty()) { auto x = v.back(); // debug(x[0]); // debug(x[1]); v.pop_back(); if(x[0] != 1 and !vis[x[0] - 1][x[1]]) { if(a[x[0] - 1][x[1]]) g.pb({x[0] - 1, x[1]}); else { vis[x[0] - 1][x[1]] = 1; v.pb({x[0] - 1, x[1]}); } } if(x[0] != n and !vis[x[0] + 1][x[1]]) { if(a[x[0] + 1][x[1]]) g.pb({x[0] + 1, x[1]}); else { v.pb({x[0] + 1, x[1]}); vis[x[0] + 1][x[1]] = 1; } } if(x[1] != 1 and !vis[x[0]][x[1] - 1]) { if(a[x[0]][x[1] - 1]) g.pb({x[0], x[1] - 1}); else { v.pb({x[0], x[1] - 1}); vis[x[0]][x[1] - 1] = 1; } } if(x[1] != m and !vis[x[0]][x[1] + 1]) { if(a[x[0]][x[1] + 1]) g.pb({x[0], x[1] + 1}); else { v.pb({x[0], x[1] + 1}); vis[x[0]][x[1] + 1] = 1; } } }}int main(){ ios_base::sync_with_stdio(0);cin.tie(0); cin >> n >> m >> k;
| ^~~~~~~~~~~~~~~~~~~~
compilation terminated.