QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#519083#7758. Painterqqbb#ML 165ms174620kbC++203.1kb2024-08-14 16:07:362024-08-14 16:07:37

Judging History

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

  • [2024-08-14 16:07:37]
  • 评测
  • 测评结果:ML
  • 用时:165ms
  • 内存:174620kb
  • [2024-08-14 16:07:36]
  • 提交

answer

#include <bits/stdc++.h>
#define qqbb ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
#define all(x) (x).begin(), (x).end()
#define int long long
#define endl '\n'
#define lb(x) x & -x
#define AA cerr<<"AA"<<endl;
using namespace std;
typedef pair<int, int> pii;
const int inf = 0x3f3f3f3f;

const int N = 2e5 + 10, M = 4e5 + 10;

void solve(){
    int n;cin>>n;
    vector<array<char,2>> op(n+1);
    vector<array<int,4>> opp(n+1);
    int lo=inf,le=inf;
    int hi=-inf,ri=-inf;
    for(int i=1;i<=n;i++){
        string s;cin>>s;
        if(s == "Circle"){
            int x,y,r;cin>>x>>y>>r;
            char p;cin>>p;
            lo=min(lo,y-r);
            le=min(le,x-r);
            hi=max(hi,y+r);
            ri=max(ri,x+r);
            op[i][0] = 'A';
            op[i][1] = p;
            opp[i][0]=x;
            opp[i][1]=y;
            opp[i][2]=r;
            opp[i][3]=0;
        }
        else if(s == "Rectangle"){
            int x1,y1,x2,y2;cin>>x1>>y1>>x2>>y2;
            char p;cin>>p;
            lo=min(lo,y1);
            le=min(le,x1);
            hi=max(hi,y2);
            ri=max(ri,x2);
            op[i][0] = 'B';
            op[i][1] = p;
            opp[i][0]=x1;
            opp[i][1]=y1;
            opp[i][2]=x2;
            opp[i][3]=y2;
        }
        else{
            int x1,y1,x2,y2;cin>>x1>>y1>>x2>>y2;
            op[i][0] = 'C';
            op[i][1] = '.';
            opp[i][0]=x1;
            opp[i][1]=y1;
            opp[i][2]=x2;
            opp[i][3]=y2;
        }
    }
    vector<vector<char>> mp(ri - le + 1,vector<char> (hi - lo + 1));
    int mpx = ri - le + 1;
    int mpy = hi - lo + 1;
    for(int i=0;i<mpx;i++){
        for(int j=0;j<mpy;j++){
            mp[i][j] = '.';
        }
    }
    for(int i=1;i<=n;i++){
        if(op[i][0] == 'A'){
            int u=opp[i][0]-le;
            int v=opp[i][1]-lo;
            int r=opp[i][2];
            for(int x=u-r;x<=u+r;x++){
                for(int y=v-r;y<=v+r;y++){
                    if((x-u)*(x-u) + (y-v)*(y-v) <= r*r){
                        mp[x][y] = op[i][1];
                    }
                }
            }
        }
        else if(op[i][0] == 'B'){
            int x1=opp[i][0]-le;
            int y1=opp[i][1]-lo;
            int x2=opp[i][2]-le;
            int y2=opp[i][3]-lo;
            for(int x=x1;x<=x2;x++){
                for(int y=y1;y<=y2;y++){
                    mp[x][y] = op[i][1];
                }
            }
        }
        else{
            int x1=opp[i][0]-le;
            int y1=opp[i][1]-lo;
            int x2=opp[i][2]-le;
            int y2=opp[i][3]-lo;
            for(int y=y2;y>=y1;y--){
                for(int x=x1;x<=x2;x++){
                    if(x<0 || y<0 || x > mpx || y > mpy){
                        cout<<'.';
                    }
                    else cout<<mp[x][y];
                }
                cout<<endl;
            }
        }
    }
}

signed main(){
    qqbb;
//	cout<<fixed<<setprecision(0);
    int Test=1;
//	cin>>Test;
    while(Test--){
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

7
Circle 0 0 5 *
Circle -2 2 1 @
Circle 2 2 1 @
Rectangle 0 -1 0 0 ^
Rectangle -2 -2 2 -2 _
Render -5 -5 5 5
Render -1 0 1 2

output:

.....*.....
..*******..
.**@***@**.
.*@@@*@@@*.
.**@***@**.
*****^*****
.****^****.
.**_____**.
.*********.
..*******..
.....*.....
@*@
***
*^*

result:

ok 14 lines

Test #2:

score: 0
Accepted
time: 165ms
memory: 174620kb

input:

10
Rectangle -4262 2204 3116 9357 U
Circle 7078 6883 4684 W
Rectangle 390 675 1195 1251 =
Rectangle 78 2138 3288 2570 5
Rectangle -874 797 -99 1440 3
Render 7261 -4311 7304 -4268
Render 2060 9253 2103 9296
Render -1379 -7141 -1336 -7098
Render 982 5708 1025 5751
Render 1080 -9592 1123 -9549

output:

............................................
............................................
............................................
............................................
............................................
............................................
.................................

result:

ok 220 lines

Test #3:

score: -100
Memory Limit Exceeded

input:

10
Rectangle -10000 -10000 10000 10000 @
Rectangle 1197 -1 1198 1 y
Rectangle 3684 -1 3685 0 &
Circle 8957 0 1 Y
Rectangle -5375 0 -5373 2 <
Circle 2683 0 0 7
Rectangle 1262 -1 1263 -1 i
Circle 3238 0 0 K
Circle -3533 0 0 G
Render -1605 0 8394 0

output:

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...

result: