# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
638573 | 2022-09-06T12:09:49 Z | morasha3 | Alternating Heights (CCO22_day1problem1) | C++17 | 1000 ms | 4436 KB |
#include <bits/stdc++.h> using namespace std; typedef int ll; typedef double ld; const ll mod=1e9+7; #define endl '\n' ll n,k,q,arr[3007]; bool dfs(vector<vector<int>>& v) { int n = v.size(); vector<int> deg(n); for (int a = 0; a < n; a++) for (int b : v[a]) deg[b]++; vector<int> q; q.reserve(n); for (int i = 0; i < n; i++) if (deg[i] == 0) q.push_back(i); for (int rep = 0; rep < q.size(); rep++) { int c = q[rep]; for (auto nxt : v[c]) { deg[nxt]--; if (deg[nxt] == 0) q.push_back(nxt); } } return n>q.size(); } int32_t main() { //freopen("jumping.in","r",stdin); ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n>>k>>q; for(int i=0; i<n; i++) cin>>arr[i]; ll m[n]; for(int i=0; i<n; i++) m[i]=i; for(int h=0; h<2; h++) { for(int i=h; i<n; i+=2) { ll r=i+1,c=0; while(r<n) { vector<vector<ll>>adj(k); for(int j=i; j<r; j++) { if (j % 2 == i % 2) adj[arr[j]-1].push_back(arr[j + 1]-1); else adj[arr[j + 1]-1].push_back(arr[j]-1); } if(dfs(adj)) break; r++; } m[i]=r-1; } } while(q--) { ll a,b; cin>>a>>b; a--,b--; if(m[a]>=b) cout<<"YES"<<endl; else cout<<"NO"<<endl; } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 181 ms | 3280 KB | Output is correct |
2 | Correct | 185 ms | 3276 KB | Output is correct |
3 | Correct | 171 ms | 3308 KB | Output is correct |
4 | Correct | 159 ms | 3228 KB | Output is correct |
5 | Correct | 168 ms | 3404 KB | Output is correct |
6 | Correct | 215 ms | 3332 KB | Output is correct |
7 | Correct | 182 ms | 3276 KB | Output is correct |
8 | Correct | 200 ms | 3440 KB | Output is correct |
9 | Correct | 771 ms | 3368 KB | Output is correct |
10 | Execution timed out | 1089 ms | 340 KB | Time limit exceeded |
11 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 164 ms | 3320 KB | Output is correct |
2 | Correct | 161 ms | 3376 KB | Output is correct |
3 | Correct | 164 ms | 3264 KB | Output is correct |
4 | Correct | 144 ms | 4436 KB | Output is correct |
5 | Correct | 150 ms | 3512 KB | Output is correct |
6 | Correct | 158 ms | 3332 KB | Output is correct |
7 | Correct | 212 ms | 3336 KB | Output is correct |
8 | Correct | 161 ms | 3400 KB | Output is correct |
9 | Correct | 215 ms | 3764 KB | Output is correct |
10 | Correct | 469 ms | 4360 KB | Output is correct |
11 | Correct | 441 ms | 4264 KB | Output is correct |
12 | Correct | 1 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Execution timed out | 1080 ms | 340 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 181 ms | 3280 KB | Output is correct |
2 | Correct | 185 ms | 3276 KB | Output is correct |
3 | Correct | 171 ms | 3308 KB | Output is correct |
4 | Correct | 159 ms | 3228 KB | Output is correct |
5 | Correct | 168 ms | 3404 KB | Output is correct |
6 | Correct | 215 ms | 3332 KB | Output is correct |
7 | Correct | 182 ms | 3276 KB | Output is correct |
8 | Correct | 200 ms | 3440 KB | Output is correct |
9 | Correct | 771 ms | 3368 KB | Output is correct |
10 | Execution timed out | 1089 ms | 340 KB | Time limit exceeded |
11 | Halted | 0 ms | 0 KB | - |