日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

UVALive 7324ASCII Addition (模拟)

發布時間:2023/12/13 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 UVALive 7324ASCII Addition (模拟) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

ASCII Addition

題目鏈接:

http://acm.hust.edu.cn/vjudge/contest/127407#problem/A

Description


Nowadays, there are smartphone applications that instantly translate text and even solve math problems
if you just point your phone’s camera at them. Your job is to implement a much simpler functionality
reminiscent of the past — add two integers written down as ASCII art.
An ASCII art is a matrix of characters, exactly 7 rows high, with each individual character either
a dot (.) or the lowercase letter ‘x’.
An expression of the form a+b is given, where both a and b are positive integers. The expression is
converted into ASCII art by writing all the expression characters (the digits of a and b as well as the ‘+’
sign) as 7 × 5 matrices, and concatenating the matrices together with a single column of dot characters
between consecutive individual matrices. The exact matrices corresponding to the digits and the ‘+’
sign are as folows:

xxxxx ....x xxxxx xxxxx x...x xxxxx xxxxx xxxxx xxxxx xxxxx ..... x...x ....x ....x ....x x...x x.... x.... ....x x...x x...x ..x.. x...x ....x ....x ....x x...x x.... x.... ....x x...x x...x ..x.. x...x ....x xxxxx xxxxx xxxxx xxxxx xxxxx ....x xxxxx xxxxx xxxxx x...x ....x x.... ....x ....x ....x x...x ....x x...x ....x ..x.. x...x ....x x.... ....x ....x ....x x...x ....x x...x ....x ..x.. xxxxx ....x xxxxx xxxxx ....x xxxxx xxxxx ....x xxxxx xxxxx .....

Given an ASCII art for an expression of the form a + b, find the result of the addition and write it
out in the ASCII art form.

Input


The input file contains several test cases, each of them as described below.
Input consists of exactly 7 lines and contains the ASCII art for an expression of the form a + b,
where both a and b are positive integers consisting of at most 9 decimal digits and written without
leading zeros.

Output


For each test case, output 7 lines containing ASCII art corresponding to the result of the addition,
without leading zeros.

Sample Input

....x.xxxxx.xxxxx.x...x.xxxxx.xxxxx.xxxxx.......xxxxx.xxxxx.xxxxx ....x.....x.....x.x...x.x.....x.........x...x...x...x.x...x.x...x ....x.....x.....x.x...x.x.....x.........x...x...x...x.x...x.x...x ....x.xxxxx.xxxxx.xxxxx.xxxxx.xxxxx.....x.xxxxx.xxxxx.xxxxx.x...x ....x.x.........x.....x.....x.x...x.....x...x...x...x.....x.x...x ....x.x.........x.....x.....x.x...x.....x...x...x...x.....x.x...x ....x.xxxxx.xxxxx.....x.xxxxx.xxxxx.....x.......xxxxx.xxxxx.xxxxx

Sample Output

....x.xxxxx.xxxxx.xxxxx.x...x.xxxxx.xxxxx ....x.....x.....x.x.....x...x.x.........x ....x.....x.....x.x.....x...x.x.........x ....x.xxxxx.xxxxx.xxxxx.xxxxx.xxxxx.....x ....x.x.........x.....x.....x.....x.....x ....x.x.........x.....x.....x.....x.....x ....x.xxxxx.xxxxx.xxxxx.....x.xxxxx.....x


題意:


用題所示的格式輸入 A + B 的式子,要以相同格式輸出結果.


題解:


對每個數字存一下,把輸入串分割成若干個數字(或'+'),然后暴力判讀入的每個數即可.
注意string沒有賦初值時候不能直接對某個位置賦值,直接用重定義過的'+'連接字符即可.


代碼:

#include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> #include <queue> #include <map> #include <set> #include <vector> #include <list> #define LL long long #define eps 1e-8 #define maxn 1010 #define mod 100000007 #define inf 0x3f3f3f3f #define mid(a,b) ((a+b)>>1) #define IN freopen("in.txt","r",stdin); using namespace std;string num[11][7] = {{"xxxxx","x...x","x...x","x...x","x...x","x...x","xxxxx"},{"....x","....x","....x","....x","....x","....x","....x",},{"xxxxx","....x","....x","xxxxx","x....","x....","xxxxx"},{"xxxxx","....x","....x","xxxxx","....x","....x","xxxxx"},{"x...x","x...x","x...x","xxxxx","....x","....x","....x"},{"xxxxx","x....","x....","xxxxx","....x","....x","xxxxx"},{"xxxxx","x....","x....","xxxxx","x...x","x...x","xxxxx"},{"xxxxx","....x","....x","....x","....x","....x","....x",},{"xxxxx","x...x","x...x","xxxxx","x...x","x...x","xxxxx"},{"xxxxx","x...x","x...x","xxxxx","....x","....x","xxxxx"},{".....","..x..","..x..","xxxxx","..x..","..x..","....."} };int match(string cur[]) {for(int i=0; i<10; i++) {int flag = 1;for(int j=0; j<7; j++) {for(int k=0; k<5; k++)if(num[i][j][k] != cur[j][k]) {flag = 0; break;}}if(flag) return i;}return -1; }string data[10]; string print[10];int main(int argc, char const *argv[]) {//IN;while(cin >> data[0]){for(int i=1; i<7; i++)cin >> data[i];int len = data[0].size();int n = (len + 1) / 6;LL a=0,b=0; int flag = 0;int start = 0;string cur[10];for(int i=1; i<=n; i++) {for(int j=0; j<7; j++) {cur[j].clear();for(int k=start; k<start+5; k++) {cur[j] += data[j][k];}}int dig = match(cur);if(dig == -1) {flag = 1;start += 6;continue;}if(!flag) {a = a*10LL + dig;} else {b = b*10LL + dig;}start += 6;}LL Ans = a + b;vector<int> ans; ans.clear();while(Ans) {int di = Ans % 10LL;Ans /= 10LL;ans.push_back(di);}int sz = ans.size();for(int i=0; i<10; i++) print[i].clear();for(int i=sz-1; i>=0; i--) {for(int j=0; j<7; j++) {for(int k=0; k<5; k++) {print[j] += num[ans[i]][j][k];}if(i) print[j] += '.';}}for(int i=0; i<7; i++) {cout << print[i] << endl;}}return 0; }

轉載于:https://www.cnblogs.com/Sunshine-tcf/p/5757847.html

總結

以上是生活随笔為你收集整理的UVALive 7324ASCII Addition (模拟)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。