Форум программистов, компьютерный форум, киберфорум
C# для начинающих
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
6 / 6 / 3
Регистрация: 14.10.2014
Сообщений: 85
1

C++ to c#

11.11.2014, 00:24. Показов 408. Ответов 0
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Мне задали задачу... я нашел её реализацию на с++ а надо на си шарп перевести.. я знаю, что отличий мало... но мутить воду тоже не очень хочется
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <iostream>
#include <cstdio>
#include <vector>
#include <queue>
#include <algorithm>
#include <limits.h>
 
using namespace std;
#define CLEAR_NEXTQ while (!nextQ.empty()) nextQ.pop();
#define MAX_SIZE 101
 
struct point
{
    int x; int y;
    point(){}
    point(int X, int Y)
    {
        x = X; y = Y;
    }
};
int n;
int steps;
int init[MAX_SIZE][MAX_SIZE];
int cur[MAX_SIZE][MAX_SIZE],prev[MAX_SIZE][MAX_SIZE];
queue<point> q,nextQ;
int moveX[4] = {0,1,0,-1};
int moveY[4] = {1,0,-1,0};
void input()
{
    cin>>n>>steps;
    for (int i=0;i<n;i++)
        for (int j=0;j<n;j++)
            scanf("%d",&init[i][j]);
}
bool correct(int x, int y)
{
    if (x<0 || y<0)
        return false;
    if (x>=n || y>=n)
        return false;
    return true;
}
void solve()
{
    q.push(point(0,0));
   
    for (int i=1;i<steps;i++)
    {
        while (!q.empty())
        {
            point p = q.front();
            q.pop();
            for (int i=0;i<4;i++)
            {
                int x = p.x + moveX[i];
                int y = p.y + moveY[i];
                if (correct(x,y))
                {
                    if (!cur[x][y])
                        nextQ.push(point(x,y));
                    cur[x][y] = max(cur[x][y],prev[p.x][p.y] + init[x][y]);
                }
            }
        }
        q = nextQ;
        CLEAR_NEXTQ
 
        for (int i=0;i<n;i++)
            for (int j=0;j<n;j++)
            {
                prev[i][j] = cur[i][j];
                cur[i][j] = 0;
            }
    }
   
    int res = prev[0][0];
    for (int i=0;i<n;i++)
        for (int j=0;j<n;j++)
            res = max(res,prev[i][j]);
    cout<<res + init[0][0];
}
int main()
{
    freopen("input.txt","r",stdin);
    freopen("output.txt","w",stdout);
   
    input();
    solve();
    return 0;
}
0
11.11.2014, 00:24
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru