QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#77677 | #5511. Minor Evil | XKError | WA | 694ms | 40696kb | C++ | 1.5kb | 2023-02-15 12:32:40 | 2023-02-15 12:32:41 |
Judging History
answer
#include <bits/stdc++.h>
#define maxn 1000005
using namespace std;
int n, k;
int a[maxn];
int b[maxn];
int m;
int s[maxn];
vector<pair<int, int> > g[maxn];
void add(int u, int v, int w) {
// cout<<"ADd:"<<u<<" "<<v<<" "<<w<<endl;
g[u].push_back({v, w});
// g[v].push_back({u, w});
}
int f[maxn];
int res[maxn];
queue<int> q;
int main() {
int T;
scanf("%d", &T);
while (T--) {
scanf("%d%d", &n, &k);
for (int i = 1; i <= n; i++) f[i] = k + 1;
for (int i = 1; i <= k; i++) scanf("%d%d", &a[i], &b[i]);
scanf("%d", &m);
for (int i = 1; i <= m; i++) {
int x;
scanf("%d", &x);
s[x] = 1;
}
for (int i = 1; i <= k; i++) {
if (s[b[i]]) add(a[i], b[i], i);
}
for (int i = 1; i <= n; i++) if (!s[i]) q.push(i);
while (!q.empty()) {
int now = q.front(); q.pop();
for (auto p : g[now]) {
int v = p.first, w = p.second;
// cout<<now<<" "<<f[now]<<" "<<w<<" "<<f[v]<<endl;
if (f[now] > w && (f[v] < w || f[v] == k + 1)) {
f[v] = w;
q.push(v);
}
}
}
bool flg = 1;
for (int i = 1; i <= n; i++) {
if (s[i]) {
// cout<<f[i]<<"@"<<endl;
if (f[i] <= k) res[f[i]] = 1;
else flg = 0;
}
}
if (!flg) {
puts("NIE");
for (int i = 1; i <= n; i++) res[i] = f[i] = s[i] = 0, g[i].clear();
continue;
}
puts("TAK");
for (int i = 1; i <= k; i++) putchar(res[i] ? 'T' : 'N');
puts("");
for (int i = 1; i <= n; i++) res[i] = f[i] = s[i] = 0, g[i].clear();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 4ms
memory: 27016kb
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: 694ms
memory: 40696kb
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 NNT TAK TNN TAK NNT TAK NNT TAK NNT NIE NIE NIE NIE NIE NIE NIE NIE NIE TAK NTNN TAK TNTN NIE NIE NIE NIE NIE NIE NIE TAK TNTN TAK NNTN TAK NNNT TAK NNTT NIE TAK NNTT NIE NIE TAK NNNT NIE TAK NNTT NIE NIE NIE NIE NIE NIE NIE NIE TAK NNT NI...
result:
wrong answer Some poeple who should be dead are alive. (test case 70)