Submission #945836

# Submission time Handle Problem Language Result Execution time Memory
945836 2024-03-14T08:04:39 Z efedmrlr Furniture (JOI20_furniture) C++17
0 / 100
1 ms 856 KB
// #pragma GCC optimize("O3,Ofast,unroll-loops")
// #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#include <bits/stdc++.h>

using namespace std;


#define lli long long int
#define MP make_pair
#define pb push_back
#define REP(i,n) for(int i = 0; (i) < (n); (i)++)
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()


void fastio() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
}


const double EPS = 0.00001;
const int INF = 1e9+500;
const int N = 105;
const int ALPH = 26;
const int LGN = 25;
constexpr int MOD = 1e9+7;
int n,m,q;
vector<vector<int> > gr(N, vector<int>(N, 0));
vector<vector<int> > vis;
bool dfs(int x, int y) {
    if(vis[x][y]) return 0;
    vis[x][y] = 1;
    if(gr[x][y] || x > n || y > m) return 0;
    if(x == n && y == m) return 1;
    if(dfs(x + 1, y)) return 1;
    if(dfs(x, y + 1)) return 1;
    return 0;

}
inline void solve() {
    cin>>n>>m;
    for(int i = 1; i<=n; i++) {
        for(int j = 1; j <= m; j++) {
            cin >> gr[i][j];
        }
    }
    cin >> q;
    for(int i = 1; i<=q; i++) {
        int x,y;
        cin >> x >> y;
        vis.assign(n + 1, vector<int>(m + 1, 0));
        gr[x][y] = 1;
        if(dfs(1, 1)) {
            cout << "1\n";
        }
        else {
            cout << "0\n";
            gr[x][y] = 0;
        }
    }

}
 
signed main() {

    fastio();
    int test = 1;
    //cin>>test;
    while(test--) {
        solve();
    }
    
}
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 856 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 856 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -