Submission #1565532


Source Code Expand

#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn=201;
typedef long long LL;
const LL mod=998244353;

int n,x[maxn],y[maxn];
LL ans;
bool f;

LL pw(int p)
{
	if (p==1) return 2ll;
	LL ans=pw(p/2);
	if (p%2) return (ans*ans*2ll)%mod;
	else return (ans*ans)%mod;
}

bool line(int p,int q,int r)
{
	return (y[q]-y[p])*(x[r]-x[q])==(y[r]-y[q])*(x[q]-x[p]);
}

int main()
{
	scanf("%d",&n);
	for(int i=1;i<=n;i++) 
		scanf("%d%d",&x[i],&y[i]);
	ans=(pw(n)-1ll-(LL)n-(LL)n*(n-1)/2)%mod;
	
	for(int i=1;i<n;i++)
	{
		for(int j=i+1;j<n;j++)
		{
			f=true;
			for(int k=1;k<j;k++)
				if (k!=i && line(i,j,k))
				{
					f=false;
					break;
				}
			if (!f) continue;
			
			int cnt=2;
			for(int k=j+1;k<=n;k++)
				if (line(i,j,k)) cnt++;
			LL tmp=(pw(cnt)-1ll-(LL)cnt-(LL)cnt*(cnt-1)/2)%mod;
			ans-=tmp;
		}
	}
	
	ans=(ans%mod+mod)%mod;
	printf("%I64d\n",ans);
	return 0;
}

Submission Info

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

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:54:22: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘LL {aka long long int}’ [-Wformat=]
  printf("%I64d\n",ans);
                      ^
./Main.cpp:27:16: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d",&n);
                ^
./Main.cpp:29:28: 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 0 ms 128 KB
0_001.txt AC 1 ms 128 KB
0_002.txt AC 0 ms 128 KB
1_003.txt AC 1 ms 128 KB
1_004.txt AC 1 ms 128 KB
1_005.txt AC 2 ms 128 KB
1_006.txt AC 1 ms 128 KB
1_007.txt AC 3 ms 128 KB
1_008.txt AC 2 ms 128 KB
1_009.txt AC 2 ms 128 KB
1_010.txt AC 1 ms 128 KB
1_011.txt AC 3 ms 128 KB
1_012.txt AC 4 ms 128 KB
1_013.txt AC 2 ms 128 KB
1_014.txt AC 1 ms 128 KB
1_015.txt AC 1 ms 128 KB
1_016.txt AC 1 ms 128 KB
1_017.txt AC 7 ms 128 KB
1_018.txt AC 7 ms 128 KB
1_019.txt AC 5 ms 128 KB
1_020.txt AC 5 ms 128 KB
1_021.txt AC 5 ms 128 KB
1_022.txt AC 6 ms 128 KB
1_023.txt AC 7 ms 128 KB
1_024.txt AC 7 ms 128 KB
1_025.txt AC 6 ms 128 KB
1_026.txt AC 6 ms 128 KB
1_027.txt AC 1 ms 128 KB
1_028.txt AC 1 ms 128 KB
1_029.txt AC 6 ms 128 KB
1_030.txt AC 7 ms 128 KB
1_031.txt AC 7 ms 128 KB
1_032.txt AC 7 ms 128 KB
1_033.txt AC 7 ms 128 KB
1_034.txt AC 7 ms 128 KB
1_035.txt AC 5 ms 128 KB