QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#748810#5511. Minor Evilagh4WA 541ms4608kbC++141.3kb2024-11-14 21:31:112024-11-14 21:31:11

Judging History

你现在查看的是最新测评结果

  • [2024-11-14 21:31:11]
  • 评测
  • 测评结果:WA
  • 用时:541ms
  • 内存:4608kb
  • [2024-11-14 21:31:11]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int z;
    cin >> z;
    while (z--){
        int n, k;
        cin >> n >> k;
        vector<pair<int, int>> S;
        for(int i = 0; i<k; i++){
            int a, b;
            cin >> a >> b;
            S.push_back({a, b});
        }
        int s;
        cin >> s;
        vector<bool> C(n+1, false);
        unordered_map<int, bool> M;
        for(int i = 0; i<s; i++){
            int a;
            cin >> a;
            M[a] = true;
        }
        vector<int> L(n+1, 0);
        for(auto &[a, b] : S){
            if(M[a]){
                L[a]++;
            }
        }
        string ans = "";
        for(auto &[a, b] : S){
            if(C[a]) continue;
            if(M[b] && L[b] == 0){
                ans+="T";
                C[b] = true;
                L[a]--;
            }else{
                L[a]--;
                ans+="N";
            }
        }
        bool czy = true;
        for(auto &[a, b] : M){
            if(b && !C[a]) czy = false;
        }
        if(czy){
            cout << "TAK\n";
            cout << ans << "\n";
        }else{
            cout << "NIE\n";
        }
    }
    
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3564kb

input:

2
5 6
1 2
2 1
2 5
2 3
2 4
4 2
3
1 2 3
3 2
1 2
2 3
2
2 3

output:

TAK
NTNTNT
NIE

result:

ok correct (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 541ms
memory: 4608kb

input:

1000
5 6
1 2
2 1
2 5
2 3
2 4
4 2
3
1 2 3
3 2
1 2
2 3
2
2 3
2 1
1 2
1
1
2 1
1 2
1
2
3 3
2 1
3 2
3 2
1
3
3 3
1 3
1 3
1 2
2
1 3
3 3
1 2
1 3
1 3
1
2
3 3
2 1
2 3
1 3
1
2
3 3
3 2
3 1
1 2
3
1 2 3
3 3
1 2
2 3
1 2
1
3
3 3
2 1
1 2
1 2
1
2
3 3
2 1
1 3
1 3
1
1
3 3
3 2
3 2
2 3
1
3
3 3
3 2
1 2
2 1
1
1
3 3
2 1
3 2...

output:

TAK
NTNTNT
NIE
NIE
TAK
T
NIE
NIE
TAK
TNN
NIE
NIE
TAK
NTN
TAK
NTT
NIE
TAK
NNT
TAK
NNT
TAK
TNT
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
TAK
NTTN
TAK
NNTT
TAK
TNTN
NIE
NIE
NIE
NIE
TAK
NNNT
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
NIE
TAK
NNT
NIE
TAK
NTN
NIE
NIE
NIE
NIE
NIE...

result:

wrong answer Contestant didn't find the solution. (test case 12)