Submission #1559869


Source Code Expand

/**
 *    author:  tourist
 *    created: 02.09.2017 15:07:12       
**/
#include <bits/stdc++.h>

using namespace std;

const int md = 998244353;

inline void add(int &a, int b) {
  a += b;
  if (a >= md) {
    a -= md;
  }
}

inline int mul(int a, int b) {
  return (long long) a * b % md;
}

inline int power(int a, int b) {
  int res = 1;
  while (b > 0) {
    if (b & 1) {
      res = mul(res, a);
    }
    a = mul(a, a);
    b >>= 1;
  }
  return res;
}

inline int inv(int x) {
  return power(x, md - 2);
}

const int N = 12345;

int x[N], y[N];

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) {
    scanf("%d %d", x + i, y + i);
  }
  int ans = power(2, n);
  add(ans, md - 1);
  add(ans, md - n);
  add(ans, md - n * (n - 1) / 2);
  for (int i = 0; i < n; i++) {
    for (int j = i + 1; j < n; j++) {
      int a = y[j] - y[i];
      int b = x[i] - x[j];
      int c = -a * x[i] - b * y[i];
      int cnt = 2;
      for (int k = 0; k < n; k++) {
        if (k == i || k == j) {
          continue;
        }
        int z = a * x[k] + b * y[k] + c;
        if (z != 0) {
          continue;
        }
        if (k < j) {
          break;
        }
        cnt++;
      }
      add(ans, md - power(2, cnt));
      add(ans, 1);
      add(ans, cnt);
      add(ans, cnt * (cnt - 1) / 2);
    }
  }
  printf("%d\n", ans);
  return 0;
}

Submission Info

Submission Time
Task E - ConvexScore
User tourist
Language C++14 (GCC 5.4.1)
Score 700
Code Size 1445 Byte
Status AC
Exec Time 7 ms
Memory 256 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:44:18: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &n);
                  ^
./Main.cpp:46:33: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d", x + i, y + i);
                                 ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 700 / 700
Status
AC × 3
AC × 36
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt, 1_013.txt, 1_014.txt, 1_015.txt, 1_016.txt, 1_017.txt, 1_018.txt, 1_019.txt, 1_020.txt, 1_021.txt, 1_022.txt, 1_023.txt, 1_024.txt, 1_025.txt, 1_026.txt, 1_027.txt, 1_028.txt, 1_029.txt, 1_030.txt, 1_031.txt, 1_032.txt, 1_033.txt, 1_034.txt, 1_035.txt
Case Name Status Exec Time Memory
0_000.txt AC 1 ms 256 KB
0_001.txt AC 1 ms 256 KB
0_002.txt AC 1 ms 256 KB
1_003.txt AC 1 ms 256 KB
1_004.txt AC 1 ms 256 KB
1_005.txt AC 3 ms 256 KB
1_006.txt AC 1 ms 256 KB
1_007.txt AC 3 ms 256 KB
1_008.txt AC 3 ms 256 KB
1_009.txt AC 3 ms 256 KB
1_010.txt AC 2 ms 256 KB
1_011.txt AC 4 ms 256 KB
1_012.txt AC 4 ms 256 KB
1_013.txt AC 3 ms 256 KB
1_014.txt AC 1 ms 256 KB
1_015.txt AC 1 ms 256 KB
1_016.txt AC 1 ms 256 KB
1_017.txt AC 7 ms 256 KB
1_018.txt AC 7 ms 256 KB
1_019.txt AC 5 ms 256 KB
1_020.txt AC 5 ms 256 KB
1_021.txt AC 5 ms 256 KB
1_022.txt AC 6 ms 256 KB
1_023.txt AC 7 ms 256 KB
1_024.txt AC 7 ms 256 KB
1_025.txt AC 6 ms 256 KB
1_026.txt AC 6 ms 256 KB
1_027.txt AC 2 ms 256 KB
1_028.txt AC 2 ms 256 KB
1_029.txt AC 6 ms 256 KB
1_030.txt AC 7 ms 256 KB
1_031.txt AC 7 ms 256 KB
1_032.txt AC 7 ms 256 KB
1_033.txt AC 7 ms 256 KB
1_034.txt AC 7 ms 256 KB
1_035.txt AC 5 ms 256 KB