# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
528436 |
2022-02-20T09:50:42 Z |
Slavita |
Kutije (COCI21_kutije) |
C++14 |
|
538 ms |
1988 KB |
#include <bits/stdc++.h>
#pragma optimize("O3")
#pragma GCC optimize("-O3")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("fast-math")
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#define ve vector<int>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define pi pair<int,int>
#define all(v) v.begin(),v.end()
#define si(v) (int)v.size()
#define en '\n'
#define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>
#define ordered_muiltiset tree<int, null_type,less_equal<>, rb_tree_tag,tree_order_statistics_node_update>
//#define int long long
using namespace std;
//using namespace __gnu_pbds;
typedef long long ll;
typedef unsigned long long ull;
const int N = 1e3 + 228;
const int big = 1e9;
//ordered_set os; // os.order_of_key(4), (*os.find_by_order(5))
int n, m, q, ans;
int mrk[N];
bitset<N> bt[N];
void dfs(int v, int st){
if (mrk[v] == st) {return;}
if (mrk[v] > 0){
mrk[v] = st;
bt[st] |= bt[v];
if (bt[v].count() > 1) return;
}
mrk[v] = st;
bt[st][v] = 1;
for (int i = 1; i <= n; i++){
if (!bt[v][i]) continue;
dfs(i, st);
}
}
//#undef int
int main(){
//#define int long long
iostream::sync_with_stdio(false); cin.tie(0); ios_base::sync_with_stdio(false); cout.tie(0);
//freopen("input.txt","r",stdin);
//freopen("output.txt","w",stdout);
cin >> n >> m >> q;
for (int i = 1; i <= m; i++)
for (int j = 1; j <= n; j++) {int x; cin >> x; bt[j][x] = 1;}
for (int i = 1; i <= n; i++){
dfs(i, i);
}
for (int i = 1; i <= q; i++){
int x, y; cin >> x >> y;
if (bt[x][y]) cout << "DA\n"; else cout << "NE\n";
}
return 0;
}
/*
*/
Compilation message
Main.cpp:2: warning: ignoring '#pragma optimize ' [-Wunknown-pragmas]
2 | #pragma optimize("O3")
|
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
454 ms |
1988 KB |
Output is correct |
2 |
Correct |
350 ms |
1732 KB |
Output is correct |
3 |
Correct |
169 ms |
1604 KB |
Output is correct |
4 |
Correct |
538 ms |
1944 KB |
Output is correct |
5 |
Correct |
75 ms |
1860 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
454 ms |
1988 KB |
Output is correct |
2 |
Correct |
350 ms |
1732 KB |
Output is correct |
3 |
Correct |
169 ms |
1604 KB |
Output is correct |
4 |
Correct |
538 ms |
1944 KB |
Output is correct |
5 |
Correct |
75 ms |
1860 KB |
Output is correct |
6 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |