Submission #845925

# Submission time Handle Problem Language Result Execution time Memory
845925 2023-09-06T19:42:50 Z samekkk Table Tennis (info1cup20_tabletennis) C++14
30 / 100
3000 ms 4812 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]);
    //for (auto x : vect) cout << x << " ";
    //cout << endl;
    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;
        //cout << "lewy wsk: " << lewy_wsk << " prawy wsk: " << prawy_wsk << " lewy val: " << vect[lewy_wsk] << " prawy val: " << vect[prawy_wsk] << endl;
        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,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:34:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   34 |             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:53:5: note: in expansion of macro 'rep'
   53 |     rep(i,V.size())
      |     ^~~
tabletennis.cpp:55:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   55 |         for (int j = i+1; j < V.size(); ++j)
      |                           ~~^~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 4 ms 776 KB Output is correct
2 Incorrect 15 ms 2144 KB Unexpected end of file - int32 expected
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 29 ms 4596 KB Output is correct
2 Incorrect 17 ms 2652 KB Unexpected end of file - int32 expected
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 16 ms 460 KB Output is correct
3 Correct 1 ms 348 KB Output is correct
4 Correct 9 ms 348 KB Output is correct
5 Correct 0 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 4 ms 348 KB Output is correct
3 Incorrect 6 ms 344 KB Unexpected end of file - int32 expected
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 587 ms 4676 KB Output is correct
3 Correct 54 ms 4540 KB Output is correct
4 Correct 294 ms 4812 KB Output is correct
5 Correct 51 ms 4644 KB Output is correct
6 Correct 171 ms 4544 KB Output is correct
7 Correct 278 ms 4660 KB Output is correct
8 Correct 53 ms 4700 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Execution timed out 3078 ms 3080 KB Time limit exceeded
3 Halted 0 ms 0 KB -