zoukankan      html  css  js  c++  java
  • Daliy Algorithm (推理,贪心)-- day 65

    Nothing to fear

    those times when you get up early and you work hard; those times when you stay up late and you work hard; those times when don’t feel like working — you’re too tired, you don’t want to push yourself — but you do it anyway. That is actually the dream. That’s the dream. It’s not the destination, it’s the journey. And if you guys can understand that, what you’ll see happen is that you won’t accomplish your dreams, your dreams won’t come true, something greater will. mamba out


    那些你早出晚归付出的刻苦努力,你不想训练,当你觉的太累了但还是要咬牙坚持的时候,那就是在追逐梦想,不要在意终点有什么,要享受路途的过程,或许你不能成就梦想,但一定会有更伟大的事情随之而来。 mamba out~

    2020.4.24


    Kind Anton

    一共存在三种可以判定的情况
    如果当前 a[i] = b[i] continue
    如果当前 a[i] < b[i] 但是 a[1-i-1] 不存在 1 错误
    如果当前 a[i] > b[i] 但是 a[1-i-1] 不存在 -1 错误
    否则满足要求

    #include <iostream>
    #include <cstdio>
    #include <algorithm>
    #include <cstdlib>
    #include <cstring>
    #include <vector>
    #include <cassert>
    #include <string>
    #include <cmath>
    #define SIS std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
    #define lowbit(x) (x & -x)
    using namespace std;
    typedef long long ll;
    const int N = 100005;
    const int MAX = 0x7ffffff;
    int t;
    
    void slove()
    {
    	int n;
    	cin >> n;
    	int a[N] , b[N];
    	for(int i = 0;i < n ;i ++)cin >> a[i];
    	for(int i = 0;i < n ;i ++)cin >> b[i];
    	vector<int> good(2, 0);
        for (int i = 0; i < n; ++i) {
            if (a[i] > b[i] && !good[0]) {
                cout << "NO
    ";
                return;
            } else if (a[i] < b[i] && !good[1]) {
                cout << "NO
    ";
                return;
            }
            if (a[i] == -1) good[0] = 1;
            if (a[i] == 1) good[1] = 1;
        }
        cout << "YES
    ";
    	return;
    }
    int main()
    {
    	SIS;
    	cin >> t;
    	while(t--)
    	{
    		slove();
    	}
    }
    

    Little Artem

    感觉像是在做阅读理解

    #include <iostream>
    #include <cstdio>
    #include <algorithm>
    #include <cstdlib>
    #include <cstring>
    #include <vector>
    #include <cassert>
    #include <string>
    #include <cmath>
    #define SIS std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
    #define lowbit(x) (x & -x)
    using namespace std;
    typedef long long ll;
    const int MAX = 0x7ffffff;
    int t;
    
    void slove()
    {
    	int n , m;
    	cin >> n >> m;
    	for(int i = 1;i <= n ;i ++)
    	{
    		for(int j = 1;j <= m ;j ++)
    		{
    			if(i == 1 && j == 1)cout << "W";
    			else cout << "B"; 
    		}
    		cout << endl;
    	}
    }
    int main()
    {
    	SIS;
    	cin >> t;
    	while(t--)
    	{
    		slove();
    	}
    }
    
  • 相关阅读:
    技术列表
    常用软件开发工具
    EXCEL数据导入SQL2008相关操作
    点点滴滴
    揪出ASP.NET 2.0四大“插件”的总后台 ASPNETDB
    古人说
    好点子都是偷来的:史上最感性的60堂创新课读书摘要
    我是怎么割韭菜的:一个骗子的悔过与自白读书摘要
    人生如我读书摘要
    德米安:彷徨少年时读书摘要
  • 原文地址:https://www.cnblogs.com/wlw-x/p/12771011.html
Copyright © 2011-2022 走看看