# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1019068 | 2024-07-10T12:52:52 Z | Nurislam | Island Hopping (JOI24_island) | C++17 | 3 ms | 344 KB |
#include "island.h" #include <bits/stdc++.h> #define pb push_back using namespace std; void solve(int N, int L){ vector<int> ord, pos(N+1), p(N+1); for(int i = 1; i < N; i++){ ord.pb(query(2, i)); } for(int i = 0; i < ord.size(); i++){ pos[ord[i]] = i+1; } for(int i = 0; i < ord.size(); i++){ if(!p[ord[i]]){ for(int k = 1; k < N; i++){ int v = query(ord[i], k); if(pos[v] < pos[ord[i]]){ p[ord[i]]= v; break; } else { p[v] = ord[i]; } } } } for(int i = 2; i <= N; i++){ answer(i, p[i]); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Wrong Answer [4] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Wrong Answer [4] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 344 KB | Wrong Answer [4] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Wrong Answer [4] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 344 KB | Wrong Answer [4] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Wrong Answer [4] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Wrong Answer [4] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 344 KB | Wrong Answer [4] |
2 | Halted | 0 ms | 0 KB | - |