Submission #953707

# Submission time Handle Problem Language Result Execution time Memory
953707 2024-03-26T14:01:30 Z De3b0o Game (APIO22_game) C++17
0 / 100
1 ms 344 KB
#include "game.h"
#include<bits/stdc++.h>
#define ll long long
#define F first
#define S second
#define in insert
#define pb push_back
#define ppb pop_back()
#define d3 ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define cans cout << ans << "\n";
#define yes cout << "Yes" << "\n";
#define no cout << "No" << "\n";
#define pll pair<ll,ll>
#define lin cout << "\n";
#define sqr 340
#define mod 1000000007
#define mid ((l+r)/2)
//#define lc (2*n)
//#define rc (2*n+1)

using namespace std;

bitset<900000000> path;


ll K , N;

void init(int n, int k)
{
    N=n;
    K=k;
    for(int i = 0 ; k>i ; i++)
        for(int j = i ; k>j ; j++)
            path[j+i*30000]=1;
}

int add_teleporter(int u, int v)
{
    if(path[v+u*30000]==1)
        return 0;
    for(int i = 0 ; K>i ; i++)
    {
        if(path[u+i*30000]==1&&path[i+v*30000]==1)
            return 1;
    }
    for(int i = 0 ; N>i ; i++)
    {
        if(path[u+i*30000]==1)
        {
            for(int j = 0 ; N>j ; j++)
            {
                if(path[j+v*30000]==1)
                    path[j+i*30000]=1;
            }
        }
    }
    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Wrong Answer[1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Wrong Answer[1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Wrong Answer[1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Wrong Answer[1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Wrong Answer[1]
2 Halted 0 ms 0 KB -