Submission #845926

# Submission time Handle Problem Language Result Execution time Memory
845926 2023-09-06T19:46:05 Z samekkk Table Tennis (info1cup20_tabletennis) C++14
49 / 100
3000 ms 3968 KB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(a,b) for (int a = 0; a < (b); ++a)
#define pb push_back
#define all(t) t.begin(), t.end()

const int max_N = 160005;
int n = 0, k = 0;
int A[max_N];
vector<int> V;
vector<int> wyn;

inline bool czy_pasuje(int val1, int val2)
{
    if (val1 == val2) return false;
    wyn = vector<int>();
    wyn.pb(val1), wyn.pb(val2);
    if (n == 2) return true;
    vector<int> vect;
    rep(i,n+k) if (A[i] != val1 and A[i] != val2) vect.pb(A[i]);
    int sum = val1 + val2, lewy_wsk = 0, prawy_wsk = vect.size()-1;
    while(lewy_wsk < prawy_wsk)
    {
        if(vect[lewy_wsk] == val1 or vect[lewy_wsk] == val2) ++lewy_wsk;
        if(vect[prawy_wsk] == val1 or vect[prawy_wsk] == val2) --prawy_wsk;
        if(vect[lewy_wsk] == val1 or vect[lewy_wsk] == val2 or vect[prawy_wsk] == val1 or vect[prawy_wsk] == val2) continue;
        if (vect[lewy_wsk] + vect[prawy_wsk] == sum)
        {
            wyn.pb(vect[lewy_wsk]), wyn.pb(vect[prawy_wsk]);
            if (n == wyn.size()) return true;
            ++lewy_wsk, --prawy_wsk;
        }
        else if (vect[lewy_wsk] + vect[prawy_wsk] > sum) --prawy_wsk;
        else ++lewy_wsk;
    }
    return false;
}

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    cin >> n >> k;
    rep(i,n+k) cin >> A[i];
    //rep(i,k) V.pb(A[i]);
    //for (int i = n; i < n+k; ++i) V.pb(A[i]);
    rep(i,n+k) V.pb(A[i]);
    rep(i,V.size())
    {
        for (int j = i+1; j < V.size(); ++j)
        {
            if (czy_pasuje(V[i],V[j]) == true)
            {
                //cout << "Vi: " << V[i] << " Vj: " << V[j] << endl;
                sort(all(wyn));
                for (auto v : wyn) cout << v << ' ';
                cout << '\n';
                return 0;
            }
        }
    }
    return 0;
}

Compilation message

tabletennis.cpp: In function 'bool czy_pasuje(int, int)':
tabletennis.cpp:31:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   31 |             if (n == wyn.size()) return true;
      |                 ~~^~~~~~~~~~~~~
tabletennis.cpp: In function 'int main()':
tabletennis.cpp:4:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    4 | #define rep(a,b) for (int a = 0; a < (b); ++a)
      |                                    ^
tabletennis.cpp:51:5: note: in expansion of macro 'rep'
   51 |     rep(i,V.size())
      |     ^~~
tabletennis.cpp:53:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   53 |         for (int j = i+1; j < V.size(); ++j)
      |                           ~~^~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 30 ms 344 KB Output is correct
2 Correct 14 ms 752 KB Output is correct
3 Correct 14 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1553 ms 1304 KB Output is correct
2 Execution timed out 3026 ms 3844 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 3036 ms 3968 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 19 ms 344 KB Output is correct
3 Correct 1 ms 344 KB Output is correct
4 Correct 9 ms 460 KB Output is correct
5 Correct 0 ms 344 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Correct 0 ms 600 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 219 ms 476 KB Output is correct
3 Correct 20 ms 344 KB Output is correct
4 Correct 124 ms 476 KB Output is correct
5 Correct 14 ms 344 KB Output is correct
6 Correct 73 ms 344 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Execution timed out 3025 ms 3888 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Execution timed out 3028 ms 3640 KB Time limit exceeded
3 Halted 0 ms 0 KB -