# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
568127 | 2022-05-24T16:51:24 Z | alvingogo | 카멜레온의 사랑 (JOI20_chameleon) | C++14 | 0 ms | 208 KB |
#include <bits/stdc++.h> #include "chameleon.h" #pragma GCC optimize("Ofast") #define fs first #define sc second #define cd complex<double> #define p_q priority_queue using namespace std; void Solve(int N){ int n=2*N; vector<vector<int> > v(n+1); vector<int> vis(n+1); vector<int> q(n); vector<pair<int,int> >ans; iota(q.begin(),q.end(),1); for(int i=1;i<=n;i++){ vector<int> tmp; if(vis[i]){ continue; } tmp.push_back(i); for(int j=i+1;j<=n;j++){ tmp.push_back(j); if(vis[j]){ continue; } if(Query(tmp)==1){ int z=0; vector<int> p; for(int k=1;k<=n;k++){ if(k==i || k==j){ continue; } p.push_back(k); } if(Query(p)==N-1){ for(int k=1;k<=n;k++){ if(k==i || k==j){ continue; } vector<int> y; for(int l=1;l<=n;l++){ if(l==i || l==j || l==k){ continue; } y.push_back(l); } z=max(z,Query(y)); if(z==N){ break; } } if(z==N-1){ ans.push_back({i,j}); vis[i]=vis[j]=1; break; } } } } } assert(ans.size()<N); for(auto h:ans){ Answer(h.fs,h.sc); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 208 KB | Wrong Answer [7] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 208 KB | Wrong Answer [7] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 208 KB | Wrong Answer [7] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 208 KB | Wrong Answer [7] |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 208 KB | Wrong Answer [7] |
2 | Halted | 0 ms | 0 KB | - |