結果

問題 No.808 Kaiten Sushi?
ユーザー maroon_kurimaroon_kuri
提出日時 2019-03-24 14:28:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 3,639 bytes
コンパイル時間 1,794 ms
コンパイル使用メモリ 167,656 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-04-10 05:53:02
合計ジャッジ時間 7,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 35 ms
7,168 KB
testcase_24 AC 29 ms
6,940 KB
testcase_25 AC 32 ms
6,940 KB
testcase_26 AC 31 ms
6,940 KB
testcase_27 AC 124 ms
11,392 KB
testcase_28 AC 33 ms
6,944 KB
testcase_29 AC 116 ms
11,008 KB
testcase_30 AC 70 ms
8,320 KB
testcase_31 AC 130 ms
11,648 KB
testcase_32 AC 152 ms
12,800 KB
testcase_33 AC 74 ms
8,320 KB
testcase_34 AC 82 ms
9,088 KB
testcase_35 AC 106 ms
10,240 KB
testcase_36 AC 69 ms
8,192 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 1 ms
6,940 KB
testcase_39 AC 177 ms
12,032 KB
testcase_40 AC 32 ms
6,940 KB
testcase_41 AC 34 ms
6,940 KB
testcase_42 AC 131 ms
10,624 KB
testcase_43 AC 46 ms
6,944 KB
testcase_44 AC 96 ms
9,216 KB
testcase_45 AC 47 ms
6,940 KB
testcase_46 AC 25 ms
6,940 KB
testcase_47 AC 191 ms
12,928 KB
testcase_48 AC 187 ms
12,928 KB
testcase_49 AC 187 ms
13,056 KB
testcase_50 AC 186 ms
12,800 KB
testcase_51 AC 185 ms
13,056 KB
testcase_52 AC 75 ms
10,240 KB
testcase_53 AC 103 ms
12,928 KB
testcase_54 AC 1 ms
6,944 KB
testcase_55 AC 2 ms
6,940 KB
testcase_56 AC 1 ms
6,944 KB
testcase_57 AC 39 ms
6,940 KB
testcase_58 AC 67 ms
8,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘ll read()’:
main.cpp:76:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   76 |         scanf("%"  SCNd64,&i);
      |         ~~~~~^~~~~~~~~~~~~~~~
main.cpp: In function ‘std::string readString()’:
main.cpp:104:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  104 |         scanf("%s",buf);
      |         ~~~~~^~~~~~~~~~
main.cpp: In function ‘char* readCharArray()’:
main.cpp:112:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  112 |         scanf("%s",ret);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#include <type_traits>
using namespace std;

using ll=int64_t;
#define int ll

#define FOR(i,a,b) for(int i=int(a);i<int(b);i++)
#define REP(i,b) FOR(i,0,b)
#define MP make_pair
#define PB push_back
#define EB emplace_back
#define ALL(x) x.begin(),x.end()
auto& errStream=cerr;
#ifdef LOCAL
#define cerr (cerr<<"-- line "<<__LINE__<<" -- ")
#else
class CerrDummy{}cerrDummy;
template<class T>
CerrDummy& operator<<(CerrDummy&cd,const T&){
	return cd;
}
using charTDummy=char;
using traitsDummy=char_traits<charTDummy>;
CerrDummy& operator<<(CerrDummy&cd,basic_ostream<charTDummy,traitsDummy>&(basic_ostream<charTDummy,traitsDummy>&)){
	return cd;
}
#define cerr cerrDummy
#endif
#define REACH cerr<<"reached"<<endl
#define DMP(x) cerr<<#x<<":"<<x<<endl
#define ZERO(x) memset(x,0,sizeof(x))
#define ONE(x) memset(x,-1,sizeof(x))

using pi=pair<int,int>;
using vi=vector<int>;
using ld=long double;

template<class T,class U>
ostream& operator<<(ostream& os,const pair<T,U>& p){
	os<<"("<<p.first<<","<<p.second<<")";
	return os;
}

template<class T>
ostream& operator <<(ostream& os,const vector<T>& v){
	os<<"{";
	REP(i,(int)v.size()){
		if(i)os<<",";
		os<<v[i];
	}
	os<<"}";
	return os;
}

template<int i,class T>
void print_tuple(ostream&,const T&){
}

template<int i,class T,class H,class ...Args>
void print_tuple(ostream&os,const T&t){
	if(i)os<<",";
	os<<get<i>(t);
	print_tuple<i+1,T,Args...>(os,t);
}

template<class ...Args>
ostream& operator<<(ostream&os,const tuple<Args...>&t){
	os<<"(";
	print_tuple<0,tuple<Args...>,Args...>(os,t);
	return os<<")";
}

ll read(){
	ll i;
	scanf("%"  SCNd64,&i);
	return i;
}

void printSpace(){
	printf(" ");
}

void printEoln(){
	printf("\n");
}

void print(ll x,int suc=1){
	printf("%" PRId64,x);
	if(suc==1)
		printEoln();
	if(suc==2)
		printSpace();
}

template<class T>
void print(const vector<T>&v){
	REP(i,v.size())
		print(v[i],i==int(v.size())-1?1:2);
}

string readString(){
	static char buf[3341000];
	scanf("%s",buf);
	return string(buf);
}

char* readCharArray(){
	static char buf[3341000];
	static int bufUsed=0;
	char* ret=buf+bufUsed;
	scanf("%s",ret);
	bufUsed+=strlen(ret)+1;
	return ret;
}

template<class T,class U>
void chmax(T& a,U b){
	if(a<b)
		a=b;
}

template<class T,class U>
void chmin(T& a,U b){
	if(b<a)
		a=b;
}

template<class T>
T Sq(const T& t){
	return t*t;
}

#define CAPITAL
void Yes(bool ex=true){
	#ifdef CAPITAL
	cout<<"YES"<<endl;
	#else
	cout<<"Yes"<<endl;
	#endif
	if(ex)exit(0);
}
void No(bool ex=true){
	#ifdef CAPITAL
	cout<<"NO"<<endl;
	#else
	cout<<"No"<<endl;
	#endif
	if(ex)exit(0);
}

const ll infLL=LLONG_MAX/3;

#ifdef int
const int inf=infLL;
#else
const int inf=INT_MAX/2-100;
#endif

constexpr ll TEN(int n){
	return n==0?1:TEN(n-1)*10;
}

template<class T>
vector<T> Uniqued(const vector<T>&vv){
	auto v(vv);
	sort(ALL(v));
	v.erase(unique(ALL(v)),v.end());
	return v;
}
template<class T>
void MakeUniqued(vector<T>&v){
	sort(ALL(v));
	v.erase(unique(ALL(v)),v.end());
}

signed main(){
	int n=read(),l=read();
	set<int> x,y;
	REP(i,n)
		x.insert(read());
	REP(i,n)
		y.insert(read());
	const auto FindLowerbound=[&](set<int>&s,int v){
		auto itr=s.lower_bound(v);
		if(itr!=s.end())return *itr;
		return *s.begin();
	};
	const auto FindPrev=[&](set<int>&s,int v){
		auto itr=s.lower_bound(v);
		if(itr!=s.begin())return *prev(itr);
		return *prev(s.end());
	};
	int cur=0,ans=0;
	REP(_,n){
		int a=FindLowerbound(x,cur);
		ans+=(a-cur+l)%l;
		cur=a;
		int b=FindLowerbound(y,cur);
		int c=FindLowerbound(x,b);
		int d=FindPrev(y,c);
		x.erase(a);
		y.erase(d);
		ans+=(d-cur+l)%l;
		cur=d;
	}
	print(ans);
}
0