제출 #769143

#제출 시각아이디문제언어결과실행 시간메모리
769143Magikarp4000Unscrambling a Messy Bug (IOI16_messy)C++17
38 / 100
1 ms340 KiB
#include "messy.h" #include <bits/stdc++.h> using namespace std; #define OPTM ios_base::sync_with_stdio(0); cin.tie(0); #define INF int(1e9+7) #define ln '\n' #define ll long long #define ull unsigned long long #define ui unsigned int #define us unsigned short #define FOR(i,s,n) for (int i = s; i < n; i++) #define FORR(i,n,s) for (int i = n; i > s; i--) #define FORX(u, arr) for (auto u : arr) #define PB push_back #define in(v,x) (v.find(x) != v.end()) #define F first #define S second #define PII pair<int, int> #define PLL pair<ll, ll> #define UM unordered_map #define US unordered_set #define PQ priority_queue #define ALL(v) v.begin(), v.end() const ll LLINF = 1e18+1; vector<int> sub2(int n) { string s = ""; FOR(i,0,n) s.PB('0'); FOR(i,0,n) { s[i] = '1'; add_element(s); } compile_set(); string t = ""; FOR(i,0,n) t.PB('0'); vector<int> p(n,-1); vector<int> v; FOR(i,0,n) v.PB(i); FOR(i,0,n) { mt19937 rng(time(0)); shuffle(ALL(v),rng); FOR(j,0,n) { if (t[v[j]] == '1') continue; t[v[j]] = '1'; if (check_element(t)) { p[v[j]] = i; break; } else t[v[j]] = '0'; } } return p; } vector<int> sub3(int n) { string s = ""; FOR(i,0,n) s.PB('0'); FOR(i,0,n) { s[i] = '1'; FOR(j,i+1,n) { s[j] = '1'; add_element(s); s[j] = '0'; } } compile_set(); string t = ""; FOR(i,0,n) t.PB('0'); FOR(i,0,n) { } } std::vector<int> restore_permutation(int n, int w, int r) { if (w/n >= -100) return sub2(n); //else return sub3(n); }

컴파일 시 표준 에러 (stderr) 메시지

messy.cpp: In function 'std::vector<int> sub3(int)':
messy.cpp:72:1: warning: no return statement in function returning non-void [-Wreturn-type]
   72 | }
      | ^
messy.cpp: In function 'std::vector<int> restore_permutation(int, int, int)':
messy.cpp:77:1: warning: control reaches end of non-void function [-Wreturn-type]
   77 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...