# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
696299 | 2023-02-06T07:38:37 Z | Dan4Life | Inside information (BOI21_servers) | C++17 | 55 ms | 4044 KB |
#include <bits/stdc++.h> using namespace std; const int mxN = (int)130000; int n, k, pos[mxN]; int32_t main() { ios_base::sync_with_stdio(false); cin.tie(0); cin >> n >> k; int sz = 1; for(int _ = 0; _ < n+k-1; _++){ char t; int x, y; cin >> t >> x; if(t=='S'){ cin >> y; if(x>y)swap(x,y); pos[y]=sz++; } else if(t=='Q'){ cin >> y; if(x==y) cout << "yes"; else if(x==1) cout << (pos[y]?"yes":"no"); else if(y==1) cout << (pos[x]?"yes":"no"); else cout << (pos[x]>pos[y] and pos[x] and pos[y]?"yes":"no"); } else{ int cnt = 0; if(!pos[x] and x!=1) cout << 1; else cout << sz-pos[x]+1; } if(t!='S') cout << "\n"; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 23 ms | 620 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 23 ms | 620 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 21 ms | 624 KB | Output is correct |
2 | Correct | 55 ms | 1896 KB | Output is correct |
3 | Correct | 54 ms | 4044 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 21 ms | 624 KB | Output is correct |
2 | Correct | 55 ms | 1896 KB | Output is correct |
3 | Correct | 54 ms | 4044 KB | Output is correct |
4 | Incorrect | 24 ms | 1556 KB | Extra information in the output file |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 27 ms | 612 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 27 ms | 612 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 596 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 596 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 24 ms | 628 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 24 ms | 628 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 21 ms | 712 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 21 ms | 712 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |