QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#571177#5414. Stop, Yesterday Please No MoreAbclWA 20ms8560kbC++143.9kb2024-09-17 21:01:502024-09-17 21:01:50

Judging History

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

  • [2024-09-17 21:01:50]
  • 评测
  • 测评结果:WA
  • 用时:20ms
  • 内存:8560kb
  • [2024-09-17 21:01:50]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
#define mod 1000000007
using namespace std;
const int N = 2005;
int n, m, k;
string s;
int xl, xr, yl, yr;

vector<pair<int, int> > nums;

int mp[N][N];

void solve() {
    cin >> n >> m >> k;
    for (int i = 0; i <= 2*n; i++) {
        for (int j = 0; j <= 2*m; j++) {
            mp[i][j] = 0;
        }
    }
    cin >> s;
    xl = 1, xr = n, yl = 1, yr = m;
    int nxl = 1, nxr = n, nyl = 1, nyr = m;
    for (int i = 0; i < s.length(); i++) {
        if (s[i] == 'R') {
            nyl++, nyr++;
            if (nyl > m) {
                if (k == 0)cout << n * m << endl;
                else cout << 0 << endl;
                return;
            }
            if (nyr > m) {
                nyr = m;
                yr--;
            }
        }
        else if (s[i] == 'L') {
            nyl--, nyr--;
            if (nyr < 1) {
                if (k == 0)cout << n * m << endl;
                else cout << 0 << endl;
                return;
            }
            if (nyl < 1) {
                nyl = 1;
                yl++;
            }
        }
        else if (s[i] == 'U') {
            nxl--, nxr--;
            if (nxr < 1) {
                if (k == 0)cout << n * m << endl;
                else cout << 0 << endl;
                return;
            }
            if (nxl < 1) {
                nxl = 1;
                xl++;
            }
        }
        else if (s[i] == 'D') {
            nxl++, nxr++;
            if (nxl > n) {
                if (k == 0)cout << n * m << endl;
                else cout << 0 << endl;
                return;
            }
            if (nxr > n) {
                nxr = n;
                xr--;
            }
        }
    }
    int sum = (yr - yl + 1) * (xr - xl + 1);
    int x = 0, y = 0;
    nums.push_back({ x,y });
    for (int i = 0; i < s.length(); i++) {
        if (s[i] == 'U') {
            x--;
            nums.push_back({ x,y });
        }
        else if (s[i] == 'D') {
            x++;
            nums.push_back({ x,y });
        }
        else if (s[i] == 'L') {
            y--;
            nums.push_back({ x,y });
        }
        else if (s[i] == 'R') {
            y++;
            nums.push_back({ x,y });
        }
    }
//	0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
//	cout<<xl<<" "<<xr<<" "<<yl<<" "<<yr<<endl;
    int mix = 1e18, miy = 1e18;
    for (auto p = nums.begin(); p != nums.end(); p++) {
        mix = min(mix, p->first);
        miy = min(miy, p->second);
    }
    mix--; miy--;
    mix = -mix, miy = -miy;
    for (auto p = nums.begin(); p != nums.end(); p++) {
        mp[p->first + mix+n][p->second + miy+m] = 1;
    }
    for (int i = 1; i <= 2*n; i++) {
        for (int j = 1; j <=2*m; j++) {
            mp[i][j] = mp[i][j] + mp[i - 1][j] + mp[i][j - 1] - mp[i - 1][j - 1];
          //   cout<<mp[i][j]<<' ';
        }//cout<<endl;
    }
//	cout<<sum<<endl;
    int ans = 0;
    //枚举起点,1,1一直到n,m;
    for (int i = 0; i <= n+1; i++) {

        for (int j =0; j <= m+1; j++) {
    
        	//放右上角
          //  int xx = i, yy = j;
           // int x = i - (xr - xl), y = j - (yr - yl);
          //  x = max(1ll, x); y = max(1ll, y);
            //if ((mp[xx][yy] + mp[x - 1][y - 1] - mp[x - 1][yy] - mp[xx][y - 1]) == sum - k)ans++;
            
			
			//放左上角
            int x=i+xl,y=j+yl;
           	int xx=i+xr,yy=j+yr ;

			if ((mp[xx][yy] + mp[x - 1][y - 1] - mp[x - 1][yy] - mp[xx][y - 1]) == sum - k)ans++;
            
          //  cout<<xx<<' '<<yy<< ' '<<x<<' '<<y<<endl;
            
        }
    }
    cout << ans << endl;
    return;
}
signed main() {
    //ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    int T_case = 1;
    cin >> T_case;
    while (T_case--) {
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3
4 5 3
ULDDRR
4 5 0
UUUUUUU
4 5 10
UUUUUUU

output:

2
20
0

result:

ok 3 number(s): "2 20 0"

Test #2:

score: -100
Wrong Answer
time: 20ms
memory: 8560kb

input:

1060
19 12 0
UDLDDUUUUDDDLLRDUDUURULUUUDRDUDRDRLRLRLULULLLDLDDRLUUUURUUUDDRLLRUUUDULURUULLRDRLRDDURDUUURRRLURLRUULRRUDURDLUUURDLURDDLUUURDDRLLURRDLRUDLRDRLLRRDRDDLDRURRRLUDULLLRUUDLRRURRDLLRRRDLLRDDDLRLRURURDDDL
11 1 0
UR
3 18 33
UDRLR
17 11 132
RLDRDLDRUU
6 10 13
UULUDDLRDLUUDLDD
1 15 0
D
6 20 50
D...

output:

228
11
20
9
13
15
16
240
10
0
0
2
6
18
14
4
49
5
4
6
2
1
0
93
21
23
4
17
1
1
3
9
15
1
320
1
2
2
1
2
5
2
2
1
1
3
2
22
2
51
3
8
6
2
8
48
28
8
9
2
4
2
4
1
11
1
2
44
0
1
4
0
4
30
3
3
105
4
9
17
4
66
2
11
28
3
4
2
2
2
4
90
3
1
11
2
48
8
4
1
0
30
2
3
4
4
4
3
4
2
0
2
3
2
0
28
0
3
4
48
5
6
225
4
3
4
1
11
3
...

result:

wrong answer 4th numbers differ - expected: '99', found: '9'