首页 > 其他分享 >Codeforces Round #277 (Div. 2) A B

Codeforces Round #277 (Div. 2) A B

时间:2023-03-03 13:07:30浏览次数:50  
标签:matrix output ++ Codeforces 277 input Div include size

http://codeforces.com/contest/486/problem/A

A. Calculating Function time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output

For a positive integer n let's define a function f:

f(n) =  - 1 + 2 - 3 + .. + ( - 1)nn

Your task is to calculate f(n) for a given integer n.

Input

The single line contains the positive integer n (1 ≤ n ≤ 1015).

Output

Print f(n) in a single line.

Sample test(s) input 4 output 2 input 5 output -3 Note

f(4) =  - 1 + 2 - 3 + 4 = 2

f(5) =  - 1 + 2 - 3 + 4 - 5 =  - 3


#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
#include<string.h>
#include<string.h>
#include<algorithm>

using namespace std;

long long n;


int main ()
{
    while (scanf("%I64d",&n)!=EOF)
    {
        if (n%2 == 0)
            printf("%I64d\n",n/2);
        else
            printf("%I64d\n",(n/2+1)*-1);
    }
    return 0;
}





http://codeforces.com/contest/486/problem/B

B. OR in Matrix time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output

Let's define logical OR as an operation on two logical values (i. e. values that belong to the set {0, 1}) that is equal to 1 if either or both of the logical values is set to 1, otherwise it is 0. We can define logical OR of three or more logical values in the same manner:

Codeforces Round #277 (Div. 2)  A  B_#include where Codeforces Round #277 (Div. 2)  A  B_ios_02 is equal to 1 if some ai = 1, otherwise it is equal to 0.

Nam has a matrix A consisting of m rows and n columns. The rows are numbered from 1 to m, columns are numbered from 1 to n. Element at row i (1 ≤ i ≤ m) and column j (1 ≤ j ≤ n) is denoted as Aij. All elements of A are either 0 or 1. From matrix A, Nam creates another matrix B of the same size using formula:

Codeforces Round #277 (Div. 2)  A  B_acm_03.

(Bij is OR of all elements in row i and column j of matrix A)

Nam gives you matrix B and challenges you to guess matrix A. Although Nam is smart, he could probably make a mistake while calculating matrix B, since size of A can be large.

Input

The first line contains two integer m and n (1 ≤ m, n ≤ 100), number of rows and number of columns of matrices respectively.

The next m lines each contain n integers separated by spaces describing rows of matrix B (each element of B is either 0 or 1).

Output

In the first line, print "NO" if Nam has made a mistake when calculating B, otherwise print "YES". If the first line is "YES", then also print mrows consisting of n integers representing matrix A that can produce given matrix B. If there are several solutions print any one.

Sample test(s) input 2 2 1 0 0 0 output NO input 2 3 1 1 1 1 1 1 output YES 1 1 1 1 1 1 input 2 3 0 1 0 1 1 1 output YES 0 0 0 0 1 0



#include <iostream>
#include <algorithm>
#include <iterator>
#include <deque>
#include <vector>
#include <unordered_set>
#include <unordered_map>
#include <set>
#include <valarray>
#include <list>
#include <stack>
#include <array>
#include <iomanip>
#include <map>
#include <string>
#include <queue>
#include <sstream>
#include <iomanip>
#include <fstream>


using namespace std;


int A[100][100];
int B[100][100];

int main(int argc, char* argv[])
{
    long long m, n;
    cin >> m >> n;

    for (size_t i = 0; i < m; ++i)
        for (size_t j = 0; j < n; ++j)
            A[i][j] = 1;

    for (size_t i = 0; i < m; ++i)
        for (size_t j = 0; j < n; ++j)
        {
            cin >> B[i][j];

            if (B[i][j] == 0)
            {
                for (size_t k = 0; k < m; ++k)
                    A[k][j] = 0;

                for (size_t k = 0; k < n; ++k)
                    A[i][k] = 0;
            }
        }

    for (size_t i = 0; i < m; ++i)
        for (size_t j = 0; j < n; ++j)
        {
            int a = 0;

            for (size_t k = 0; k < m; ++k)
                a |= A[k][j];

            for (size_t k = 0; k < n; ++k)
                a |= A[i][k];

            if (a != B[i][j])
            {
                cout << "NO\n";
                return 0;
            }
        }

    cout << "YES\n";
    for (size_t i = 0; i < m; ++i)
    {
        for (size_t j = 0; j < n; ++j)
            cout << A[i][j] << " ";
        cout << endl;
    }

    return 0;
}


标签:matrix,output,++,Codeforces,277,input,Div,include,size
From: https://blog.51cto.com/u_15990681/6098460

相关文章