結果

問題 No.2551 2, 3, 5, 7 Game
ユーザー cho435cho435
提出日時 2023-12-02 01:29:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 412 ms / 2,357 ms
コード長 1,348 bytes
コンパイル時間 5,293 ms
コンパイル使用メモリ 306,792 KB
実行使用メモリ 34,564 KB
最終ジャッジ日時 2023-12-02 01:29:31
合計ジャッジ時間 8,542 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
31,312 KB
testcase_01 AC 50 ms
31,184 KB
testcase_02 AC 51 ms
31,312 KB
testcase_03 AC 52 ms
31,184 KB
testcase_04 AC 66 ms
31,312 KB
testcase_05 AC 391 ms
34,564 KB
testcase_06 AC 381 ms
34,564 KB
testcase_07 AC 412 ms
34,564 KB
testcase_08 AC 380 ms
34,564 KB
testcase_09 AC 67 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)

#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
#include<ext/pb_ds/tag_and_trait.hpp>
using namespace __gnu_pbds;

constexpr int mxsz = 4098;
using bst = bitset<mxsz>;

int t;
vector<ll> v(mxsz);
//gp_hash_table<ll,bst> mp;
unordered_map<ll,bst> mp;
bst dfs(ll x){
	auto itr=mp.find(x);
	if(itr!=mp.end()) return itr->second;
	bst res;
	res.set();
	int shf=v.end()-upper_bound(v.begin(),v.end(),x);
	if(!shf) return mp[x]=0;
	res>>=shf;
	res|=dfs(x*7);
	res|=dfs(x*5);
	res|=dfs(x*3);
	res|=dfs(x*2);
	res.flip();
	return mp[x]=move(res);
}

int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>t;
	vector<ll> vv(t);
	rep(i,t) cin>>vv[i];
	vector<int> ans(t,-1);
	vector<int> p(t);
	iota(p.begin(),p.end(),0);
	sort(p.begin(),p.end(),[&](int a,int b){
		return vv[a]<vv[b];
	});
	for(int i=0;i<t;i+=mxsz){
		mp.clear();
		for(int j=i;j<min(i+mxsz,t);j++){
			v[j-i]=vv[p[j]];
		}
		if(i+mxsz>t){
			for(int j=t;j<i+mxsz;j++){
				v[j-i]=vv[p.back()];
			}
		}
		bst res=dfs(1);
		for(int j=i;j<min(i+mxsz,t);j++){
			ans[p[j]]=res[j-i];
		}
	}
	rep(i,t){
		cout<<(ans[i]?"ryota\n":"sepa\n");
	}
}
0