結果

問題 No.2482 Sandglasses
ユーザー 沙耶花沙耶花
提出日時 2023-09-22 21:42:04
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 910 bytes
コンパイル時間 4,391 ms
コンパイル使用メモリ 267,952 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-11-16 22:44:54
合計ジャッジ時間 11,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001


int main(){
	
	long long N,K,T;
	cin>>N>>K>>T;
	
	vector<pair<char,long long>> x(N);
	rep(i,N)cin>>x[i].first;
	vector<long long> ps;
	rep(i,N){
		cin>>x[i].second;
		long long cur = x[i].second;
		if(x[i].first=='A'){
			cur = K+K-cur;
		}
		cur += T;
		cur %= (K*2);
		if(cur<=K)ps.push_back(cur);
		else{
			ps.push_back(K-(cur-K));
		}
	}
	sort(ps.begin(),ps.end());
	vector<int> pos(N);
	rep(i,N)pos[i] = i;
	sort(pos.begin(),pos.end(),[&](int a,int b){
		return x[a].second<x[b].second;
	});
	{
		vector<int> pp(N);
		rep(i,N){
			pp[pos[i]] = i;
		}
		swap(pp,pos);
	}
	rep(i,N){
		if(i!=0)cout<<' ';
		cout<<ps[pos[i]];
	}
	cout<<endl;
	
	return 0;
}
0