Submission #524345

#TimeUsernameProblemLanguageResultExecution timeMemory
524345iskhakkutbilimTable Tennis (info1cup20_tabletennis)C++14
20 / 100
3055 ms3572 KiB
// Author: Tazhibaev Iskhak #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; using namespace std; typedef tree<pair<int, int> ,null_type,less< pair<int, int> >,rb_tree_tag, tree_order_statistics_node_update> ordered_set; const long double pi = acos((long double) - 1.0); const double eps = (double)1e-9; const int INF = 1e9 + 7; #define ff first #define ss second #define ll long long #define ld long double #define pb push_back void usaco( string filename){ freopen((filename+".in").c_str(), "r", stdin); freopen((filename+".out").c_str(), "w", stdout); } main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int n, k; cin >> n >> k; vector<int> a(n + k); for(int i = 0;i < n + k; i++){ cin >> a[i]; } function <bool(vector<int>) > good = [&](vector<int> s){ for(int i = 0;i < n; i++){ int j = i + 1; if(j >= n or (n - i - 1) < 0 or (n - j - 1) < 0) break; if(s[i] + s[n-i-1] != s[j] + s[n-j-1]) return false; } return true; }; if(k == 1){ for(int i = 0;i < n + k; i++){ vector<int> sub; for(int j = 0;j < n + k; j++){ if(i != j) sub.push_back(a[j]); } if(good(sub)){ for(auto to : sub) cout << to << " "; return 0; } } }else{ for(int mask = 0; mask < (1 << (n + k)); mask++){ if(__builtin_popcount(mask) != n) continue; vector<int> sub; for(int i = 0;i < n + k; i++){ if(mask & (1 << i)) sub.push_back(a[i]); } if(good(sub)){ for(auto x : sub) cout << x << " "; return 0; } } } return 0; }

Compilation message (stderr)

tabletennis.cpp:27:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   27 | main(){
      | ^~~~
tabletennis.cpp: In function 'void usaco(std::string)':
tabletennis.cpp:20:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   20 |   freopen((filename+".in").c_str(), "r", stdin);
      |   ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tabletennis.cpp:21:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   21 |   freopen((filename+".out").c_str(), "w", stdout);
      |   ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...