답안 #668055

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
668055 2022-12-02T16:27:09 Z 600Mihnea 섬 항해 (CEOI13_adriatic) C++17
25 / 100
2000 ms 26756 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
const int N = 250000 + 7;
const int A = 2500 + 7;
int n;
int posr[N];
int posc[N];
int s[A][A];

int getsum(int r1, int c1, int r2, int c2)
{
  assert(1 <= r1 && r1 <= r2 && r2 < A);
  assert(1 <= c1 && c1 <= c2 && c2 < A);
  return s[r2][c2] - s[r1 - 1][c2] - s[r2][c1 - 1] + s[r1 - 1][c1 - 1];
}

pair<int, int> next1(pair<int, int> current)
{
  int r = current.first, c = current.second;

  int r_new = r, c_new = c;

  for (int i = 1; i <= n; i++)
  {
    if (posc[i] < c)
    {
      r_new = min(r_new, posr[i]);
    }
    if (posr[i] > r)
    {
      c_new = max(c_new, posc[i]);
    }
  }
  return {r_new, c_new};
}

pair<int, int> next2(pair<int, int> current)
{
  int r = current.first, c = current.second;

  int r_new = r, c_new = c;

  for (int i = 1; i <= n; i++)
  {
    if (posc[i] > c)
    {
      r_new = max(r_new, posr[i]);
    }
    if (posr[i] < r)
    {
      c_new = min(c_new, posc[i]);
    }
  }
  return {r_new, c_new};
}

int main()
{
#ifdef ONPC
  freopen ("input.txt", "r", stdin);
#endif // ONPC

#ifndef ONPC
  ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#endif // ONPC

  cin >> n;
  for (int i = 1; i <= n; i++)
  {
    cin >> posr[i] >> posc[i];
    s[posr[i]][posc[i]]++;
  }
  for (int i = 1; i < A; i++)
  {
    int c = 0;
    for (int j = 1; j < A; j++)
    {
      c += s[i][j];
      s[i][j] = c + s[i - 1][j];
    }
  }

  for (int init = 1; init <= n; init++)
  {
    ll sum = n - 3;
    pair<int, int> current = {posr[init], posc[init]};
    int curd = 1;
    while (getsum(1, current.second, current.first, A - 1) >= 1)
    {
      curd++;
      sum += getsum(1, current.second, current.first, A - 1);
      current = next1(current);
    }
    curd = 1;
    current = {posr[init], posc[init]};
    while (getsum(current.first, 1, A - 1, current.second) >= 1)
    {
      curd++;
      sum += getsum(current.first, 1, A - 1, current.second);
      current = next2(current);
    }
    cout << sum << "\n";
  }

  return 0;
}
/**
**/
# 결과 실행 시간 메모리 Grader output
1 Correct 18 ms 24860 KB Output is correct
2 Correct 19 ms 24800 KB Output is correct
3 Correct 18 ms 24920 KB Output is correct
4 Correct 19 ms 24916 KB Output is correct
5 Correct 19 ms 24804 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 183 ms 24916 KB Output is correct
2 Correct 42 ms 24940 KB Output is correct
3 Correct 674 ms 25060 KB Output is correct
4 Correct 42 ms 24916 KB Output is correct
5 Correct 79 ms 24932 KB Output is correct
6 Execution timed out 2095 ms 24932 KB Time limit exceeded
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2088 ms 24944 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2101 ms 25044 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2087 ms 26756 KB Time limit exceeded
2 Halted 0 ms 0 KB -