이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// subtask 1 - 1 punct
// brute? cred ca e chiar mai rau ca brute
// sum(n ^ 4) < 50 ^ 5 = 5 sec
// dar folosesc bitset! deci intra
#include <bits/stdc++.h>
using namespace std;
bitset<51> f[51]; // poate intra si subtask 2? :pleading_face:
int n;
int testcase(int loc) {
bitset<51> curr[51];
int ans = 0;
queue<int> q;
for(int i = 1; i <= n; i ++) {
q.push(i);
for(int j = 1; j <= n; j ++) {
curr[i][j] = f[i][j];
}
}
while(!q.empty()) {
int i = q.front();
q.pop();
for(int j = 1; j <= n; j ++) {
if(!curr[i][j]) {
continue;
}
for(int k = 1; k <= n; k ++) {
if(k == i || k == j) {
continue;
}
// i e inter point
if(!curr[i][k] && curr[j][k] && curr[k][j]) {
// e posibil
// sa vedeim in ce directii
curr[i][k] = 1;
q.push(k); // ?
ans ++;
}
}
}
}
return ans;
}
int main() {
int m;
cin >> n >> m;
for(int i = 1; i <= m; i ++) {
int a, b;
cin >> a >> b;
f[a][b] = 1;
cout << testcase(i) + i << '\n';
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |