結果

問題 No.1746 Sqrt Integer Segments
ユーザー kotatsugamekotatsugame
提出日時 2021-11-18 00:58:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 1,060 ms
コンパイル使用メモリ 102,436 KB
実行使用メモリ 30,248 KB
最終ジャッジ日時 2024-09-13 09:24:15
合計ジャッジ時間 6,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
17,040 KB
testcase_01 AC 13 ms
17,036 KB
testcase_02 AC 191 ms
26,380 KB
testcase_03 AC 101 ms
22,284 KB
testcase_04 AC 137 ms
23,952 KB
testcase_05 AC 264 ms
30,108 KB
testcase_06 AC 80 ms
21,132 KB
testcase_07 AC 34 ms
18,444 KB
testcase_08 AC 179 ms
26,180 KB
testcase_09 AC 265 ms
30,092 KB
testcase_10 AC 75 ms
21,008 KB
testcase_11 AC 236 ms
28,812 KB
testcase_12 AC 272 ms
30,124 KB
testcase_13 AC 271 ms
30,248 KB
testcase_14 AC 264 ms
30,120 KB
testcase_15 AC 262 ms
30,224 KB
testcase_16 AC 277 ms
30,248 KB
testcase_17 AC 152 ms
25,100 KB
testcase_18 AC 46 ms
17,804 KB
testcase_19 AC 46 ms
17,988 KB
testcase_20 AC 46 ms
17,932 KB
testcase_21 AC 67 ms
17,552 KB
testcase_22 AC 66 ms
17,420 KB
testcase_23 AC 39 ms
17,168 KB
testcase_24 AC 120 ms
17,932 KB
testcase_25 AC 120 ms
17,932 KB
testcase_26 AC 120 ms
17,992 KB
testcase_27 AC 120 ms
17,808 KB
testcase_28 AC 119 ms
17,824 KB
testcase_29 AC 120 ms
17,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:13:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   13 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<array>
#include<random>
#include<map>
using namespace std;
const int T=3;
using dat=array<unsigned int,T>;
bool isp[1<<20];
vector<int>ps;
unsigned int hs[T][1<<20];
int N,A[2<<17];
main()
{
	for(int i=2;i<1<<20;i++)if(!isp[i])
	{
		ps.push_back(i);
		for(int j=i+i;j<1<<20;j+=i)isp[j]=true;
	}
	mt19937 rng(114514);
	for(int p:ps)
	{
		for(int i=0;i<T;i++)hs[i][p]=rng();
	}
	cin>>N;
	map<dat,int>cnt;
	long ans=0;
	dat now={};
	cnt[now]=1;
	for(int i=0;i<N;i++)
	{
		cin>>A[i];
		for(int j=0;ps[j]*ps[j]<=A[i];j++)if(A[i]%ps[j]==0)
		{
			int c=0;
			while(A[i]%ps[j]==0)A[i]/=ps[j],c++;
			if(c%2)
			{
				for(int k=0;k<T;k++)now[k]^=hs[k][ps[j]];
			}
		}
		if(A[i]>1)
		{
			for(int k=0;k<T;k++)now[k]^=hs[k][A[i]];
		}
		ans+=cnt[now]++;
	}
	cout<<ans<<endl;
}
0