QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#506004#6422. Evil CoordinateAbclWA 24ms3708kbC++141.9kb2024-08-05 14:35:262024-08-05 14:35:26

Judging History

你现在查看的是最新测评结果

  • [2024-08-05 14:35:26]
  • 评测
  • 测评结果:WA
  • 用时:24ms
  • 内存:3708kb
  • [2024-08-05 14:35:26]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
const int MAXSIZE=200005;
long long even[MAXSIZE],odd[MAXSIZE];
void solve() {
	int mx,my;
	cin>>mx>>my;
	string str;
	cin>>str;
	if(mx==0&&my==0) {
		cout<<"Impossible"<<endl;
		return;
	}
	map<char,int> mp;
	for(int i=0; i<str.length(); i++) {
		mp[str[i]]++;//统计各个方向移动的指令数目
	}
	int end_x=mp['R']-mp['L'];//不要取绝对值就是算最后的坐标
	int end_y=mp['U']-mp['D'];
	
	if(end_x!=mx&&end_y!=my) { //如果两个最终的结果都不跟坐标相同
		for(int i=0; i<mp['L']; i++) {
			cout<<'L';
		}
		for(int i=0; i<mp['R']; i++) {
			cout<<'R';
		}
		for(int i=0; i<mp['U']; i++) {
			cout<<'U';
		}
		for(int i=0; i<mp['D']; i++) {
			cout<<'D';
		}
		cout<<endl;
		return;
	} 
	
	else if(end_x!=mx&&end_y==my) {//若x不相同,但是y的坐标相同的话
		if(end_x>0&&end_x>mx) {
			cout<<"Impossible"<<endl;
			return;
		} else if(end_x<0&&end_x<mx) {
			cout<<"Impossible"<<endl;
			return;
		} else {
			for(int i=0; i<mp['L']; i++) {
				cout<<'L';
			}
			for(int i=0; i<mp['R']; i++) {
				cout<<'R';
			}
			for(int i=0; i<mp['U']; i++) {
				cout<<'U';
			}
			for(int i=0; i<mp['D']; i++) {
				cout<<'D';
			}
			cout<<endl;
			return;
		}
	} 
	
	else if(end_y!=my&&end_x==mx) { //如果y最后不相同但是x相同,
		if(end_y>0&&end_y>my) {
			cout<<"Impossible"<<endl;
			return;
		} else if(end_y<0&&end_y<my) {
			cout<<"Impossible"<<endl;
			return;
		} else {
			for(int i=0; i<mp['U']; i++) {
				cout<<'U';
			}
			for(int i=0; i<mp['D']; i++) {
				cout<<'D';
			}
			for(int i=0; i<mp['L']; i++) {
				cout<<'L';
			}
			for(int i=0; i<mp['R']; i++) {
				cout<<'R';
			}
			cout<<endl;
			return;
		}
	} 
	
	else {
		cout<<"Impossible"<<endl;
		return;
	}


}
int main() {
	int t;
	cin>>t;
	while(t--) {
		solve();
	}
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3516kb

input:

5
1 1
RURULLD
0 5
UUU
0 3
UUU
0 2
UUU
0 0
UUU

output:

LLRRUUD
UUU
Impossible
Impossible
Impossible

result:

ok 5 cases

Test #2:

score: -100
Wrong Answer
time: 24ms
memory: 3708kb

input:

11109
6 0
RUDUDR
2 0
URU
0 0
UDRU
0 0
R
-1 1
LDUUDDRUUL
-1 5
RRUUUDUUU
-8 4
RRDRLDR
2 0
UD
0 0
UUDD
3 -2
LDDLLLRR
3 -2
LDRURLDD
1 0
RRL
-1 0
DUDDLLRDU
-4 0
LL
-1 -1
DLRLDLUDUR
1 4
URDULUR
0 0
DDUUDUDDDD
0 2
UU
1 0
RRULD
0 -2
LDLRLLDRRL
0 1
RLRLLRLUR
-3 0
RL
0 0
D
0 0
L
0 0
DDLRRUDRUD
0 0
DULU
2 0
RR...

output:

RRUUDD
RUU
Impossible
Impossible
Impossible
Impossible
LRRRRDD
UD
Impossible
Impossible
LLRRUDDD
Impossible
Impossible
LL
Impossible
UUUDLRR
Impossible
Impossible
Impossible
Impossible
Impossible
LR
Impossible
Impossible
Impossible
Impossible
Impossible
Impossible
LLLUD
Impossible
LUUUDDD
UUDDRR
Imp...

result:

wrong answer case 6, participant does not find an answer but the jury does