답안 #32320

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
32320 2017-10-09T00:55:04 Z dqhungdl File Paths (BOI15_fil) C++14
0 / 100
0 ms 2040 KB
#include <bits/stdc++.h>
using namespace std;

int n,m,k,s,p[3005],l[3005];

void Sub1()
{
    for(int i=n+1;i<=n+m;i++)
    {
        int u=i,len=0;
        bool check=false;
        while(u>0)
        {
            len+=l[u];
            if((k-len)%s==0)
            {
                cout<<"YES\n";
                check=true;
                break;
            }
            u=p[u];
        }
        if(check==false)
            cout<<"NO\n";
    }
}

int main()
{
    cin>>n>>m>>k>>s;
    s++;
    for(int i=1;i<=n+m;i++)
    {
        cin>>p[i]>>l[i];
        l[i]++;
    }
    if(n<=500&&m<=500)
        Sub1();
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 2040 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 2040 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 2040 KB Output isn't correct
2 Halted 0 ms 0 KB -